diff options
| author | fat <[email protected]> | 2012-12-07 17:06:01 -0500 |
|---|---|---|
| committer | fat <[email protected]> | 2012-12-07 17:06:01 -0500 |
| commit | a7eb9c294a575b5471ddec45ae75e1d09f7ace4c (patch) | |
| tree | e55d0f54282e2f9f41c7ba87254e2ab9928f10ee /js/tests/unit/bootstrap-tab.js | |
| parent | 1c5b8e967e2b421503bc010d4ed3b79406ea5b7b (diff) | |
| download | bootstrap-a7eb9c294a575b5471ddec45ae75e1d09f7ace4c.tar.xz bootstrap-a7eb9c294a575b5471ddec45ae75e1d09f7ace4c.zip | |
add noConflict functionality to all bootstrap plugins
Diffstat (limited to 'js/tests/unit/bootstrap-tab.js')
| -rw-r--r-- | js/tests/unit/bootstrap-tab.js | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/js/tests/unit/bootstrap-tab.js b/js/tests/unit/bootstrap-tab.js index 40f9a7406..ba5910d5e 100644 --- a/js/tests/unit/bootstrap-tab.js +++ b/js/tests/unit/bootstrap-tab.js @@ -2,6 +2,12 @@ $(function () { module("bootstrap-tabs") + test("should provide no conflict", function () { + var tab = $.fn.tab.noConflict() + ok(!$.fn.tab, 'tab was set back to undefined (org value)') + $.fn.tab = tab + }) + test("should be defined on jquery object", function () { ok($(document.body).tab, 'tabs method is defined') }) |
