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:
-rw-r--r--docs/javascript.html2
-rw-r--r--js/bootstrap-alert.js4
-rw-r--r--js/bootstrap-button.js4
-rw-r--r--js/bootstrap-collapse.js4
-rw-r--r--js/bootstrap-dropdown.js4
-rw-r--r--js/bootstrap-modal.js4
-rw-r--r--js/bootstrap-popover.js4
-rw-r--r--js/bootstrap-scrollspy.js4
-rw-r--r--js/bootstrap-tab.js4
-rw-r--r--js/bootstrap-twipsy.js8
10 files changed, 30 insertions, 12 deletions
diff --git a/docs/javascript.html b/docs/javascript.html
index 09cdc714cb..c541d57fbd 100644
--- a/docs/javascript.html
+++ b/docs/javascript.html
@@ -757,7 +757,7 @@ $('a[data-toggle="tab"]').bind('shown', function (e) {
</section>
- <!-- Button
+ <!-- Button
================================================== -->
<section id="button">
diff --git a/js/bootstrap-alert.js b/js/bootstrap-alert.js
index 210512a8b3..0691300808 100644
--- a/js/bootstrap-alert.js
+++ b/js/bootstrap-alert.js
@@ -32,7 +32,9 @@
Alert.prototype = {
- close: function ( e ) {
+ constructor: Alert
+
+ , close: function ( e ) {
var $element = $(this)
$element = $element.hasClass('alert-message') ? $element : $element.parent()
diff --git a/js/bootstrap-button.js b/js/bootstrap-button.js
index 1cafe4d688..4ed24d98b9 100644
--- a/js/bootstrap-button.js
+++ b/js/bootstrap-button.js
@@ -31,7 +31,9 @@
Button.prototype = {
- setState: function (state) {
+ constructor: Button
+
+ , setState: function (state) {
var d = 'disabled'
, $el = this.$element
, data = $el.data()
diff --git a/js/bootstrap-collapse.js b/js/bootstrap-collapse.js
index 93f91513e3..f56f6c7050 100644
--- a/js/bootstrap-collapse.js
+++ b/js/bootstrap-collapse.js
@@ -34,7 +34,9 @@
Collapse.prototype = {
- dimension: function () {
+ constructor: Collapse
+
+ , dimension: function () {
var hasWidth = this.$element.hasClass('width')
return hasWidth ? 'width' : 'height'
}
diff --git a/js/bootstrap-dropdown.js b/js/bootstrap-dropdown.js
index 7259284bfe..238a52e086 100644
--- a/js/bootstrap-dropdown.js
+++ b/js/bootstrap-dropdown.js
@@ -32,7 +32,9 @@
Dropdown.prototype = {
- toggle: function ( e ) {
+ constructor: Dropdown
+
+ , toggle: function ( e ) {
var li = $(this).parent('li')
, isActive = li.hasClass('open')
diff --git a/js/bootstrap-modal.js b/js/bootstrap-modal.js
index 5f543c5537..189bcf2acc 100644
--- a/js/bootstrap-modal.js
+++ b/js/bootstrap-modal.js
@@ -34,7 +34,9 @@
Modal.prototype = {
- toggle: function () {
+ constructor: Modal
+
+ , toggle: function () {
return this[!this.isShown ? 'show' : 'hide']()
}
diff --git a/js/bootstrap-popover.js b/js/bootstrap-popover.js
index 3c67b18fc2..890f6efc0b 100644
--- a/js/bootstrap-popover.js
+++ b/js/bootstrap-popover.js
@@ -34,7 +34,9 @@
Popover.prototype = $.extend({}, $.fn.twipsy.Twipsy.prototype, {
- setContent: function () {
+ constructor: Popover
+
+ , setContent: function () {
var $tip = this.tip()
, title = this.getTitle()
, content = this.getContent()
diff --git a/js/bootstrap-scrollspy.js b/js/bootstrap-scrollspy.js
index fe34019ffc..8248b6cbdd 100644
--- a/js/bootstrap-scrollspy.js
+++ b/js/bootstrap-scrollspy.js
@@ -39,7 +39,9 @@
ScrollSpy.prototype = {
- refresh: function () {
+ constructor: ScrollSpy
+
+ , refresh: function () {
this.targets = this.$body
.find(this.selector)
.map(function () {
diff --git a/js/bootstrap-tab.js b/js/bootstrap-tab.js
index ba956cbe86..6aa8ae32cf 100644
--- a/js/bootstrap-tab.js
+++ b/js/bootstrap-tab.js
@@ -31,7 +31,9 @@
Tab.prototype = {
- show: function () {
+ constructor: Tab
+
+ , show: function () {
var $this = this.element
, $ul = $this.closest('ul:not(.dropdown-menu)')
, href = $this.attr('data-target') || $this.attr('href')
diff --git a/js/bootstrap-twipsy.js b/js/bootstrap-twipsy.js
index fe4469a232..ca8ac8800f 100644
--- a/js/bootstrap-twipsy.js
+++ b/js/bootstrap-twipsy.js
@@ -34,7 +34,9 @@
Twipsy.prototype = {
- show: function() {
+ constructor: Twipsy
+
+ , show: function() {
var pos
, actualWidth
, actualHeight
@@ -183,7 +185,7 @@
return this
}
- $.fn.twipsy.initWith = function (options, Constructor, name) {
+ $.fn.twipsy.initWith = function (options, Base, name) {
var twipsy
, binder
, eventIn
@@ -209,7 +211,7 @@
var twipsy = $.data(ele, name)
if (!twipsy) {
- twipsy = new Constructor(ele, $.fn.twipsy.elementOptions(ele, options))
+ twipsy = new Base(ele, $.fn.twipsy.elementOptions(ele, options))
$.data(ele, name, twipsy)
}