]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
define constructor on prototypes
authorJacob Thornton <jacobthornton@gmail.com>
Thu, 1 Dec 2011 06:42:22 +0000 (22:42 -0800)
committerJacob Thornton <jacobthornton@gmail.com>
Thu, 1 Dec 2011 06:42:22 +0000 (22:42 -0800)
docs/javascript.html
js/bootstrap-alert.js
js/bootstrap-button.js
js/bootstrap-collapse.js
js/bootstrap-dropdown.js
js/bootstrap-modal.js
js/bootstrap-popover.js
js/bootstrap-scrollspy.js
js/bootstrap-tab.js
js/bootstrap-twipsy.js

index 09cdc714cbb9ab2005dccdff446e2f79a5254e28..c541d57fbd40556726c22d9d28273b52774b60b3 100644 (file)
@@ -757,7 +757,7 @@ $('a[data-toggle="tab"]').bind('shown', function (e) {
     </section>
 
 
-     <!-- Button
+    <!-- Button
     ================================================== -->
 
     <section id="button">
index 210512a8b31e10b2dc09aa2cfc038abb58a299b4..06913008085bc1e0e811cb62676680d22ad54865 100644 (file)
@@ -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()
index 1cafe4d6889fcbf022ff223712f770cb87730f44..4ed24d98b9d5de0af62a9dc374e471be56bdced8 100644 (file)
@@ -31,7 +31,9 @@
 
   Button.prototype = {
 
-      setState: function (state) {
+      constructor: Button
+
+    , setState: function (state) {
         var d = 'disabled'
           , $el = this.$element
           , data = $el.data()
index 93f91513e344a24a350a7f6951fee6d0c56f94cb..f56f6c7050cd5ee9a95764e88a63fd8db0276ed5 100644 (file)
@@ -34,7 +34,9 @@
 
   Collapse.prototype = {
 
-    dimension: function () {
+    constructor: Collapse
+
+  , dimension: function () {
       var hasWidth = this.$element.hasClass('width')
       return hasWidth ? 'width' : 'height'
     }
index 7259284bfedf3f2bd55a57215497aeb74900c76a..238a52e08607dbffb3db3c73afccc52470f5b2f1 100644 (file)
@@ -32,7 +32,9 @@
 
   Dropdown.prototype = {
 
-    toggle: function ( e ) {
+    constructor: Dropdown
+
+  , toggle: function ( e ) {
       var li = $(this).parent('li')
         , isActive = li.hasClass('open')
 
index 5f543c5537d87b19328b19557270ef482bbc351a..189bcf2acc35f1affbe7e0e5a95b75e3ac5a4bca 100644 (file)
@@ -34,7 +34,9 @@
 
   Modal.prototype = {
 
-      toggle: function () {
+      constructor: Modal
+
+    , toggle: function () {
         return this[!this.isShown ? 'show' : 'hide']()
       }
 
index 3c67b18fc230b09797dd208b84cbe49753384363..890f6efc0bec5b3123414aa37230eaafca1d4f66 100644 (file)
@@ -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()
index fe34019ffc38d03129e7b69ad8a60952514d11ad..8248b6cbddb2a842d39c6635a5e7074cad803f21 100644 (file)
@@ -39,7 +39,9 @@
 
   ScrollSpy.prototype = {
 
-      refresh: function () {
+      constructor: ScrollSpy
+
+    , refresh: function () {
         this.targets = this.$body
           .find(this.selector)
           .map(function () {
index ba956cbe86aa0e0f103b6d07895f375857c10fe9..6aa8ae32cf8908d81b6c9fc13faecfb3650eec82 100644 (file)
@@ -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')
index fe4469a232f5824592d9587f348f1a729c9eaa08..ca8ac8800f675df68ed0141ae7ac7ec18d27992d 100644 (file)
@@ -34,7 +34,9 @@
 
   Twipsy.prototype = {
 
-    show: function() {
+    constructor: Twipsy
+
+  , show: function() {
       var pos
         , actualWidth
         , actualHeight
     return this
   }
 
-  $.fn.twipsy.initWith = function (options, Constructor, name) {
+  $.fn.twipsy.initWith = function (options, Base, name) {
     var twipsy
       , binder
       , eventIn
       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)
       }