git://git.onelab.eu
/
myslice.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
plugins: reworked the framework using inheritance + added active_filters
[myslice.git]
/
plugins
/
tabs
/
tabs.js
1
(function($){
2
3
$.fn.Tabs = function( method ) {
4
5
$('a[data-toggle="tab"]').on('shown', function (e) {
6
google.maps.event.trigger(map, 'resize');
7
//e.target // current tab
8
//e.relatedTarget // previous tab
9
});
10
11
};
12
13
})( jQuery );