Lines Matching refs:window

14 var snowStorm = (function(window, document) {  argument
86 window.setTimeout(callback, 1000/(storm.animationInterval || 20));
89 var _animationFrame = (window.requestAnimationFrame ||
90 window.webkitRequestAnimationFrame ||
91 window.mozRequestAnimationFrame ||
92 window.oRequestAnimationFrame ||
93 window.msRequestAnimationFrame ||
98 return _animationFrame.apply(window, arguments);
189 var old = (!window.addEventListener && window.attachEvent), slice = Array.prototype.slice,
260 …scrollY = (storm.flakeBottom ? 0 : parseInt(window.scrollY || document.documentElement.scrollTop |…
274 if (window.innerWidth || window.innerHeight) {
275 screenX = window.innerWidth - 16 - storm.flakeRightOffset;
276 screenY = (storm.flakeBottom || window.innerHeight);
333 storm.events.remove(window,'scroll',storm.scrollHandler);
334 storm.events.remove(window,'resize',storm.resizeHandler);
340 storm.events.remove(window,'blur',storm.freeze);
341 storm.events.remove(window,'focus',storm.resume);
583 storm.events.add(window,'resize',storm.resizeHandler);
584 storm.events.add(window,'scroll',storm.scrollHandler);
590 storm.events.add(window,'blur',storm.freeze);
591 storm.events.add(window,'focus',storm.resume);
597 storm.events.add(isIE?document:window,'mousemove',storm.mouseMove);
628 if (window.getComputedStyle) {
631 …targetElementIsRelative = (window.getComputedStyle(storm.targetElement, null).getPropertyValue('po…
645 window.setTimeout(function() {
649 storm.events.remove(isIE?document:window,'mousemove',doDelayedStart);
657 storm.events.remove(window, 'load', doStart);
662 storm.events.add(window, 'load', doStart, false);
667 }(window, document));