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/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/bootstrap-tab.js')
| -rw-r--r-- | js/bootstrap-tab.js | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/js/bootstrap-tab.js b/js/bootstrap-tab.js index 059b39b35..84d4834a2 100644 --- a/js/bootstrap-tab.js +++ b/js/bootstrap-tab.js @@ -110,6 +110,8 @@ /* TAB PLUGIN DEFINITION * ===================== */ + var old = $.fn.tab + $.fn.tab = function ( option ) { return this.each(function () { var $this = $(this) @@ -122,6 +124,15 @@ $.fn.tab.Constructor = Tab + /* TAB NO CONFLICT + * =============== */ + + $.fn.tab.noConflict = function () { + $.fn.tab = old + return this + } + + /* TAB DATA-API * ============ */ |
