Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Otto <markdotto@gmail.com>2018-01-12 09:42:40 +0300
committerMark Otto <markdotto@gmail.com>2018-01-12 09:42:40 +0300
commit6d8d8639f3a290cba93ef406c59ea31ad46e1c6d (patch)
treeafef6ae26f246839effeb0fe894bab25075c7418 /js/dist/carousel.js
parent80d0943b95984bfaf4997d2198d467876d294bd8 (diff)
dist
Diffstat (limited to 'js/dist/carousel.js')
-rw-r--r--js/dist/carousel.js15
1 files changed, 7 insertions, 8 deletions
diff --git a/js/dist/carousel.js b/js/dist/carousel.js
index ee8ecdd43e..2cc8bd7c55 100644
--- a/js/dist/carousel.js
+++ b/js/dist/carousel.js
@@ -100,12 +100,12 @@ var Carousel = function ($) {
this._indicatorsElement = $(this._element).find(Selector.INDICATORS)[0];
this._addEventListeners();
- } // getters
+ } // Getters
var _proto = Carousel.prototype;
- // public
+ // Public
_proto.next = function next() {
if (!this._isSliding) {
this._slide(Direction.NEXT);
@@ -195,7 +195,7 @@ var Carousel = function ($) {
this._isSliding = null;
this._activeElement = null;
this._indicatorsElement = null;
- }; // private
+ }; // Private
_proto._getConfig = function _getConfig(config) {
@@ -221,7 +221,7 @@ var Carousel = function ($) {
});
if ('ontouchstart' in document.documentElement) {
- // if it's a touch-enabled device, mouseenter/leave are fired as
+ // If it's a touch-enabled device, mouseenter/leave are fired as
// part of the mouse compatibility events on first tap - the carousel
// would stop cycling until user tapped out of it;
// here, we listen for touchend, explicitly pause the carousel
@@ -260,7 +260,6 @@ var Carousel = function ($) {
break;
default:
- return;
}
};
@@ -352,7 +351,7 @@ var Carousel = function ($) {
}
if (!activeElement || !nextElement) {
- // some weirdness is happening, so we bail
+ // Some weirdness is happening, so we bail
return;
}
@@ -394,7 +393,7 @@ var Carousel = function ($) {
if (isCycling) {
this.cycle();
}
- }; // static
+ }; // Static
Carousel._jQueryInterface = function _jQueryInterface(config) {
@@ -418,7 +417,7 @@ var Carousel = function ($) {
data.to(config);
} else if (typeof action === 'string') {
if (typeof data[action] === 'undefined') {
- throw new Error("No method named \"" + action + "\"");
+ throw new TypeError("No method named \"" + action + "\"");
}
data[action]();