(string)
| 367 | cssProps = {}; |
| 368 | |
| 369 | function camelCase(string) { |
| 370 | return string.replace(/^-ms-/, 'ms-').replace(/-([\da-z])/gi, function(match, letter) { |
| 371 | return letter.toUpperCase(); |
| 372 | }); |
| 373 | } |
| 374 | |
| 375 | function getVendorProp(name) { |
| 376 | var style = document.body.style; |