jit
jit copied to clipboard
IE7 script error
IE7 (actually IE9 in IE7 compat mode) throws an error when JIT tries to set a width/height style to a negative value:
version: 2.0.0b file: jit.js, line: 15353
possible fix: style.width = Math.max(0, node.getData('width')) * sx + 'px'; style.height = Math.max(0, node.getData('height')) * sy + 'px';
Thanks for reporting! Could you submit a pull request for this please?