There was an error while loading. Please reload this page.
1 parent 3d7a637 commit 5e57ebcCopy full SHA for 5e57ebc
1 file changed
tests/qunit/unit/css.js
@@ -1,3 +1,9 @@
1
+// declare vars (preventing JSHint messages)
2
+var test = test || function(){},
3
+ QUnit = QUnit || {},
4
+ _html2canvas = _html2canvas || {};
5
+
6
7
module("CSS");
8
$(function() {
9
@@ -113,7 +119,7 @@ $(function() {
113
119
if ( window.getComputedStyle ) {
114
120
split = $(el).css(prop).split(" ");
115
121
} else {
116
- split = [$(el).css(prop+"X"),$(el).css(prop+"Y")]
122
+ split = [$(el).css(prop+"X"),$(el).css(prop+"Y")];
117
123
}
118
124
125
var testEl = $('<div />').css({
0 commit comments