diff --git a/docs/index.html b/docs/index.html
index c9a51cd7c9..42c548ea3f 100644
--- a/docs/index.html
+++ b/docs/index.html
@@ -21,7 +21,7 @@
-
+
diff --git a/docs/javascript.html b/docs/javascript.html
index 7d1c6d6ca4..8a4636bb3d 100644
--- a/docs/javascript.html
+++ b/docs/javascript.html
@@ -89,12 +89,12 @@ $('#modal-content').modal({
modal:toggle
Toggle the modal open state.
$('#modal-content').trigger('modal:toggle')
- modal:open
+ modal:show
Opens the modal.
- $('#modal-content').trigger('modal:open')
- modal:close
+ $('#modal-content').trigger('modal:show')
+ modal:hide
Closes the modal.
- $('#modal-content').trigger('modal:close')
+ $('#modal-content').trigger('modal:hide')
Demo
diff --git a/js/bootstrap-modal.js b/js/bootstrap-modal.js
index 4b4f05ae36..54cbad4b11 100644
--- a/js/bootstrap-modal.js
+++ b/js/bootstrap-modal.js
@@ -40,10 +40,10 @@
}
this.$element = $(content)
- .bind('modal:open', $.proxy(this.open, this))
- .bind('modal:close', $.proxy(this.close, this))
+ .bind('modal:show', $.proxy(this.show, this))
+ .bind('modal:hide', $.proxy(this.hide, this))
.bind('modal:toggle', $.proxy(this.toggle, this))
- .delegate('.close', 'click', $.proxy(this.close, this))
+ .delegate('.close', 'click', $.proxy(this.hide, this))
return this
}
@@ -51,12 +51,12 @@
Modal.prototype = {
toggle: function () {
- return this[!this.isOpen ? 'open' : 'close']()
+ return this[!this.isShown ? 'show' : 'hide']()
}
- , open: function () {
+ , show: function () {
var that = this
- this.isOpen = true
+ this.isShown = true
_.escape.call(this)
_.backdrop.call(this)
@@ -73,12 +73,12 @@
return this
}
- , close: function (e) {
+ , hide: function (e) {
e && e.preventDefault()
var that = this
- this.isOpen = false
+ this.isShown = false
_.escape.call(this)
_.backdrop.call(this)
@@ -108,11 +108,11 @@
backdrop: function () {
var that = this
, animate = this.$element.hasClass('fade') ? 'fade' : ''
- if ( this.isOpen && this.settings.backdrop ) {
+ if ( this.isShown && this.settings.backdrop ) {
this.$backdrop = $('')
- .click(function () { that.close() })
+ .click($.proxy(this.hide, this))
.appendTo(document.body)
- } else if ( !this.isOpen && this.$backdrop ) {
+ } else if ( !this.isShown && this.$backdrop ) {
this.$backdrop.removeClass('in')
function removeElement() {
@@ -128,13 +128,13 @@
, escape: function () {
var that = this
- if ( this.isOpen && this.settings.closeOnEscape ) {
+ if ( this.isShown && this.settings.closeOnEscape ) {
$('body').bind('keyup.modal.escape', function ( e ) {
if ( e.which == 27 ) {
- that.close()
+ that.hide()
}
})
- } else if ( !this.isOpen ) {
+ } else if ( !this.isShown ) {
$('body').unbind('keyup.modal.escape')
}
}
@@ -156,7 +156,7 @@
$.fn.modal.defaults = {
backdrop: false
- , closeOnEscape: false
+ , hideOnEscape: false
}
})( jQuery || ender )
\ No newline at end of file
diff --git a/js/bootstrap-popover.js b/js/bootstrap-popover.js
index 53284806f9..5928fe8caf 100644
--- a/js/bootstrap-popover.js
+++ b/js/bootstrap-popover.js
@@ -59,9 +59,10 @@
$.fn.popover = function (options) {
if (typeof options == 'object') options = $.extend({}, $.fn.popover.defaults, options)
- $.fn.twipsy.initWith.call(this, options, Popover)
+ $.fn.twipsy.initWith.call(this, options, Popover, 'popover')
+ return this
}
- $.fn.popover.defaults = $.extend({}, $.fn.twipsy.defaults, { content: '', placement: 'right'})
+ $.fn.popover.defaults = $.extend({} , $.fn.twipsy.defaults, { content: 'content', placement: 'right'})
})( jQuery || ender )
\ No newline at end of file
diff --git a/js/bootstrap-twipsy.js b/js/bootstrap-twipsy.js
index 3d117a4453..ac2f562414 100644
--- a/js/bootstrap-twipsy.js
+++ b/js/bootstrap-twipsy.js
@@ -187,34 +187,34 @@
* ======================== */
$.fn.twipsy = function (options) {
- $.fn.twipsy.initWith.call(this, options, Twipsy)
+ $.fn.twipsy.initWith.call(this, options, Twipsy, 'twipsy')
+ return this
}
- $.fn.twipsy.initWith = function (options, Constructor) {
-
+ $.fn.twipsy.initWith = function (options, Constructor, name) {
var twipsy
, binder
, eventIn
, eventOut
if (options === true) {
- return this.data('twipsy')
+ return this.data(name)
} else if (typeof options == 'string') {
- twipsy = this.data('twipsy')
+ twipsy = this.data(name)
if (twipsy) {
twipsy[options]()
}
return this
}
- options = $.extend({}, $.fn.twipsy.defaults, options)
+ options = $.extend({}, $.fn[name].defaults, options)
function get(ele) {
- var twipsy = $.data(ele, 'twipsy')
+ var twipsy = $.data(ele, name)
if (!twipsy) {
twipsy = new Constructor(ele, $.fn.twipsy.elementOptions(ele, options))
- $.data(ele, 'twipsy', twipsy)
+ $.data(ele, name, twipsy)
}
return twipsy
@@ -263,6 +263,9 @@
this[binder](eventIn, enter)[binder](eventOut, leave)
}
+ this.bind(name + ':show', enter)
+ this.bind(name + ':hide', leave)
+
return this
}
diff --git a/js/tests/unit/bootstrap-modal.js b/js/tests/unit/bootstrap-modal.js
index 24510664ce..cfdf4064d3 100644
--- a/js/tests/unit/bootstrap-modal.js
+++ b/js/tests/unit/bootstrap-modal.js
@@ -3,30 +3,54 @@ $(function () {
module("bootstrap-modal")
test("should be defined on jquery object", function () {
- ok($(document.body).modal, 'modal method is defined')
+ var div = $("")
+ ok(div.modal, 'modal method is defined')
})
- test("should not return element", function () {
- ok(!$(document.body).modal()[0], 'document.body not returned')
+ test("should return element", function () {
+ var div = $("")
+ ok(div.modal() == div, 'document.body returned')
})
- test("should return instance of modal class", function () {
- ok($(document.body).modal() instanceof $.fn.modal.Modal, 'document.body returned')
+ test("should expose defaults var for settings", function () {
+ ok($.fn.modal.defaults, 'default object exposed')
})
- test("should expose defaults var for settings", {
- ok(!!$.fn.modal.default, 'default object exposed')
- })
-
- test("should insert into dom when open is called", function () {
- var div = $("")
- div.modal().open()
+ test("should insert into dom when modal:show event is called", function () {
+ $.support.transition = false
+ var div = $("")
+ div.modal().trigger("modal:show")
+ ok($('#modal-test').length, 'modal insterted into dom')
+ div.remove()
})
test("should remove from dom when close is called", function () {
$.support.transition = false
- re
+ var div = $("")
+ div.modal().trigger("modal:show")
+ ok($('#modal-test').length, 'modal insterted into dom')
+ div.trigger("modal:hide")
+ ok(!$('#modal-test').length, 'modal removed from dom')
+ div.remove()
})
- test("should remove from dom when click .close")
+ test("should toggle when toggle is called", function () {
+ $.support.transition = false
+ var div = $("")
+ div.modal().trigger("modal:toggle")
+ ok($('#modal-test').length, 'modal insterted into dom')
+ div.trigger("modal:toggle")
+ ok(!$('#modal-test').length, 'modal removed from dom')
+ div.remove()
+ })
+
+ test("should remove from dom when click .close", function () {
+ $.support.transition = false
+ var div = $("
")
+ div.modal().trigger("modal:toggle")
+ ok($('#modal-test').length, 'modal insterted into dom')
+ div.find('.close').click()
+ ok(!$('#modal-test').length, 'modal removed from dom')
+ div.remove()
+ })
})
\ No newline at end of file
diff --git a/js/tests/unit/bootstrap-popover.js b/js/tests/unit/bootstrap-popover.js
index e69de29bb2..42ecd70ae5 100644
--- a/js/tests/unit/bootstrap-popover.js
+++ b/js/tests/unit/bootstrap-popover.js
@@ -0,0 +1,71 @@
+$(function () {
+
+ module("bootstrap-popover")
+
+ test("should be defined on jquery object", function () {
+ var div = $('')
+ ok(div.popover, 'popover method is defined')
+ })
+
+ test("should return element", function () {
+ var div = $('')
+ ok(div.popover() == div, 'document.body returned')
+ })
+
+ test("should render popover element", function () {
+ $.support.transition = false
+ var popover = $('@mdo')
+ .appendTo('#qunit-runoff')
+ .popover()
+ .trigger('popover:show')
+
+ ok($('.popover').length, 'popover was inserted')
+ popover.trigger('popover:hide')
+ ok(!$(".popover").length, 'popover removed')
+ $('#qunit-runoff').empty()
+ })
+
+ test("should store popover instance in popover data object", function () {
+ $.support.transition = false
+ var popover = $('@mdo')
+ .popover()
+
+ ok(!!popover.data('popover'), 'popover instance exists')
+ })
+
+ test("should get title and content from options", function () {
+ $.support.transition = false
+ var popover = $('@fat')
+ .appendTo('#qunit-runoff')
+ .popover({
+ title: '@fat'
+ , content: 'loves writing tests (╯°□°)╯︵ ┻━┻'
+ })
+ .trigger('popover:show')
+
+ ok($('.popover').length, 'popover was inserted')
+ equals($('.popover .title').text(), '@fat', 'title correctly inserted')
+ equals($('.popover .content').text(), 'loves writing tests (╯°□°)╯︵ ┻━┻', 'content correctly inserted')
+
+ popover.trigger('popover:hide')
+ ok(!$('.popover').length, 'popover was removed')
+ $('#qunit-runoff').empty()
+ })
+
+ test("should get title and content from attributes", function () {
+ $.support.transition = false
+ var popover = $('@mdo')
+ .appendTo('#qunit-runoff')
+ .popover()
+ .trigger('popover:show')
+
+ ok($('.popover').length, 'popover was inserted')
+ equals($('.popover .title').text(), '@mdo', 'title correctly inserted')
+ equals($('.popover .content').text(), "loves data attributes (づ。◕‿‿◕。)づ ︵ ┻━┻", 'content correctly inserted')
+
+ popover.trigger('popover:hide')
+ ok(!$('.popover').length, 'popover was removed')
+ $('#qunit-runoff').empty()
+ })
+
+})
\ No newline at end of file
diff --git a/js/tests/unit/bootstrap-tabs.js b/js/tests/unit/bootstrap-tabs.js
index e69de29bb2..2ee6761eda 100644
--- a/js/tests/unit/bootstrap-tabs.js
+++ b/js/tests/unit/bootstrap-tabs.js
@@ -0,0 +1,49 @@
+$(function () {
+
+ module("bootstrap-tabs")
+
+ test("should be defined on jquery object", function () {
+ ok($(document.body).tabs, 'tabs method is defined')
+ })
+
+ test("should return element", function () {
+ ok($(document.body).tabs()[0] == document.body, 'document.body returned')
+ })
+
+ test("should activate element by tab id", function () {
+ var tabsHTML = ''
+
+
+ $('').appendTo("#qunit-runoff")
+
+ $(tabsHTML).tabs().find('a').last().click()
+ equals($("#qunit-runoff").find('.active').attr('id'), "profile")
+
+ $(tabsHTML).tabs().find('a').first().click()
+ equals($("#qunit-runoff").find('.active').attr('id'), "home")
+
+ $("#qunit-runoff").empty()
+ })
+
+ test("should activate element by pill id", function () {
+ var pillsHTML = ''
+
+
+ $('').appendTo("#qunit-runoff")
+
+ $(pillsHTML).pills().find('a').last().click()
+ equals($("#qunit-runoff").find('.active').attr('id'), "profile")
+
+ $(pillsHTML).pills().find('a').first().click()
+ equals($("#qunit-runoff").find('.active').attr('id'), "home")
+
+ $("#qunit-runoff").empty()
+ })
+
+})
\ No newline at end of file
diff --git a/js/tests/unit/bootstrap-twipsy.js b/js/tests/unit/bootstrap-twipsy.js
index e69de29bb2..05de7e9380 100644
--- a/js/tests/unit/bootstrap-twipsy.js
+++ b/js/tests/unit/bootstrap-twipsy.js
@@ -0,0 +1,81 @@
+$(function () {
+
+ module("bootstrap-twipsy")
+
+ test("should be defined on jquery object", function () {
+ var div = $("")
+ ok(div.twipsy, 'popover method is defined')
+ })
+
+ test("should return element", function () {
+ var div = $("")
+ ok(div.twipsy() == div, 'document.body returned')
+ })
+
+ test("should expose default settings", function () {
+ ok(!!$.fn.twipsy.defaults, 'defaults is defined')
+ })
+
+ test("should remove title attribute", function () {
+ var twipsy = $('').twipsy()
+ ok(!twipsy.attr('title'), 'title tag was removed')
+ })
+
+ test("should add data attribute for referencing original title", function () {
+ var twipsy = $('').twipsy()
+ equals(twipsy.attr('data-original-title'), 'Another twipsy', 'original title preserved in data attribute')
+ })
+
+ test("should place tooltips relative to placement option", function () {
+ $.support.transition = false
+ var twipsy = $('')
+ .appendTo('#qunit-runoff')
+ .twipsy({placement: 'below'})
+ .trigger('twipsy:show')
+
+ ok($(".twipsy").hasClass('fade below in'), 'has correct classes applied')
+ twipsy.trigger('twipsy:hide')
+ ok(!$(".twipsy").length, 'twipsy removed')
+ $('#qunit-runoff').empty()
+ })
+
+ test("should add a fallback in cases where elements have no title tag", function () {
+ $.support.transition = false
+ var twipsy = $('')
+ .appendTo('#qunit-runoff')
+ .twipsy({fallback: '@fat'})
+ .trigger('twipsy:show')
+
+ equals($(".twipsy").text(), "@fat", 'has correct default text')
+ twipsy.trigger('twipsy:hide')
+ ok(!$(".twipsy").length, 'twipsy removed')
+ $('#qunit-runoff').empty()
+ })
+
+ test("should not allow html entities", function () {
+ $.support.transition = false
+ var twipsy = $('')
+ .appendTo('#qunit-runoff')
+ .twipsy()
+ .trigger('twipsy:show')
+
+ ok(!$('.twipsy b').length, 'b tag was not inserted')
+ twipsy.trigger('twipsy:hide')
+ ok(!$(".twipsy").length, 'twipsy removed')
+ $('#qunit-runoff').empty()
+ })
+
+ test("should allow html entities if html option set to true", function () {
+ $.support.transition = false
+ var twipsy = $('')
+ .appendTo('#qunit-runoff')
+ .twipsy({html: true})
+ .trigger('twipsy:show')
+
+ ok($('.twipsy b').length, 'b tag was inserted')
+ twipsy.trigger('twipsy:hide')
+ ok(!$(".twipsy").length, 'twipsy removed')
+ $('#qunit-runoff').empty()
+ })
+
+})
\ No newline at end of file