Correcting window reference
This commit is contained in:
parent
ad5bf88893
commit
f6380efe61
File diff suppressed because one or more lines are too long
|
|
@ -140,7 +140,7 @@
|
|||
appendChild = "appendChild",
|
||||
apply = "apply",
|
||||
concat = "concat",
|
||||
supportsTouch = ('ontouchstart' in window) || window.DocumentTouch && document instanceof DocumentTouch, //taken from Modernizr touch test
|
||||
supportsTouch = ('ontouchstart' in g.win) || g.win.DocumentTouch && g.doc instanceof DocumentTouch, //taken from Modernizr touch test
|
||||
E = "",
|
||||
S = " ",
|
||||
Str = String,
|
||||
|
|
|
|||
|
|
@ -520,7 +520,7 @@
|
|||
appendChild = "appendChild",
|
||||
apply = "apply",
|
||||
concat = "concat",
|
||||
supportsTouch = ('ontouchstart' in window) || window.DocumentTouch && document instanceof DocumentTouch, //taken from Modernizr touch test
|
||||
supportsTouch = ('ontouchstart' in g.win) || g.win.DocumentTouch && g.doc instanceof DocumentTouch, //taken from Modernizr touch test
|
||||
E = "",
|
||||
S = " ",
|
||||
Str = String,
|
||||
|
|
|
|||
Loading…
Reference in New Issue