(target, prop, compute)
| 227 | |
| 228 | // private helper methods: |
| 229 | function getStyle(target, prop, compute) { |
| 230 | if (compute || (compute == null && s.compute)) { |
| 231 | return window.getComputedStyle(target)[prop]; |
| 232 | } else { |
| 233 | return target.style[prop]; |
| 234 | } |
| 235 | } |
| 236 | |
| 237 | function parseTransform(str, compare) { |
| 238 | var result, list = [false, str]; |