aboutsummaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorEvan Meagher <[email protected]>2011-12-02 10:47:46 -0800
committerEvan Meagher <[email protected]>2011-12-02 10:47:46 -0800
commit3726df695eedecee323920305cb5d486a787acd6 (patch)
treecc1727ab482f0ddc35ed84da330802c180bcb860 /js
parent61e84d8762d79befb2d75685705fd4e451a609fe (diff)
parentcee2f61898f4807311402fed747a93ee68a31f8f (diff)
downloadbootstrap-3726df695eedecee323920305cb5d486a787acd6.tar.xz
bootstrap-3726df695eedecee323920305cb5d486a787acd6.zip
Merge remote-tracking branch 'upstream/2.0-wip' into add-vertical-nav-divider
Diffstat (limited to 'js')
-rw-r--r--js/bootstrap-alert.js4
-rw-r--r--js/bootstrap-button.js4
-rw-r--r--js/bootstrap-carousel.js59
-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, 88 insertions, 11 deletions
diff --git a/js/bootstrap-alert.js b/js/bootstrap-alert.js
index 210512a8b..069130080 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 1cafe4d68..4ed24d98b 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-carousel.js b/js/bootstrap-carousel.js
new file mode 100644
index 000000000..9513b4cd2
--- /dev/null
+++ b/js/bootstrap-carousel.js
@@ -0,0 +1,59 @@
+/* ==========================================================
+ * bootstrap-carousel.js v2.0.0
+ * http://twitter.github.com/bootstrap/javascript.html#alerts
+ * ==========================================================
+ * Copyright 2011 Twitter, Inc.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ * ========================================================== */
+
+
+!function( $ ){
+
+ "use strict"
+
+ /* CAROUSEL CLASS DEFINITION
+ * ========================= */
+
+ var Carousel = function ( el ) {
+ $(el).delegate(dismiss, 'click', this.close)
+ }
+
+ Carousel.prototype = {
+
+ }
+
+
+ /* CAROUSEL PLUGIN DEFINITION
+ * ========================== */
+
+ $.fn.carousel = function ( option ) {
+ return this.each(function () {
+ var $this = $(this)
+ , data = $this.data('alert')
+ if (!data) $this.data('alert', (data = new Alert(this)))
+ if (typeof option == 'string') data[option].call($this)
+ })
+ }
+
+ $.fn.carousel.Carousel = Carousel
+
+
+ /* CAROUSEL DATA-API
+ * ================= */
+
+ // $(function () {
+ // $('body').delegate(dismiss, 'click.alert.data-api', Alert.prototype.close)
+ // })
+
+}( window.jQuery || window.ender ) \ No newline at end of file
diff --git a/js/bootstrap-collapse.js b/js/bootstrap-collapse.js
index 93f91513e..f56f6c705 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 7259284bf..238a52e08 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 5f543c553..189bcf2ac 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 3c67b18fc..890f6efc0 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 fe34019ff..8248b6cbd 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 ba956cbe8..6aa8ae32c 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 fe4469a23..ca8ac8800 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)
}