Last active
April 19, 2017 17:08
-
-
Save Benjamin-Dobell/5fc46bfea3c486aa54a3dd7aca0703d0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
I._onWindowResize = function(a) { | |
if (this._lastReportedWidth != document.body.offsetWidth) { | |
this._lastReportedWidth = document.body.offsetWidth; | |
if (this._isAutoPlaying && this._cancelAutoPlayOnInteraction) { | |
this.stopAutoPlay(a) | |
} | |
window.clearTimeout(this._onResizeDebouncedTimeout); | |
this._onResizeDebouncedTimeout = setTimeout(this._onResizeDebounced, 500); | |
aj._onWindowResize.call(this, a) | |
} | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment