From: Jacob Thornton Date: Fri, 17 Feb 2012 04:22:01 +0000 (-0800) Subject: null out interval so that pause doesn't resume on next or prev X-Git-Tag: v2.0.1~1^2~11 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e730f8adb562ccb885d48fea6f8f075530ef53d8;p=thirdparty%2Fbootstrap.git null out interval so that pause doesn't resume on next or prev --- diff --git a/docs/assets/bootstrap.zip b/docs/assets/bootstrap.zip index e433b73054..dacefe63f4 100644 Binary files a/docs/assets/bootstrap.zip and b/docs/assets/bootstrap.zip differ diff --git a/docs/assets/js/bootstrap-carousel.js b/docs/assets/js/bootstrap-carousel.js index 3c0f1df832..374697994c 100644 --- a/docs/assets/js/bootstrap-carousel.js +++ b/docs/assets/js/bootstrap-carousel.js @@ -61,6 +61,7 @@ , pause: function () { clearInterval(this.interval) + this.interval = null return this } diff --git a/js/bootstrap-carousel.js b/js/bootstrap-carousel.js index 3c0f1df832..374697994c 100644 --- a/js/bootstrap-carousel.js +++ b/js/bootstrap-carousel.js @@ -61,6 +61,7 @@ , pause: function () { clearInterval(this.interval) + this.interval = null return this }