plugins: updated js framework + googlemaps and hazelnut to better handle sets and...
[myslice.git] / plugins / tabs / static / js / tabs.js
1 (function($){
2
3     $.fn.Tabs = function( method ) {
4
5         $('a[data-toggle="tab"]').on('shown', function (e) {
6           // find the plugin object inside the tab content referenced by the current tabs
7           $('.plugin', $($(e.target).attr('href'))).trigger('show');
8         });
9
10     };
11
12 })( jQuery );