PluginProbe
WP-Stateless – Google Cloud Storage / 3.0.3
WP-Stateless – Google Cloud Storage v3.0.3
4.4.3 2.1.7 2.1.8 2.1.9 2.2.0 2.2.1 2.2.2 2.2.3 2.2.4 2.2.5 2.2.6 2.2.7 2.3.0 2.3.1 2.3.2 3.0 3.0.1 3.0.2 3.0.3 3.0.4 3.1.0 3.1.1 3.2.0 3.2.1 3.2.2 All 62 releases
wp-stateless / static / scripts / wp-stateless-settings.js

wp-stateless-settings.js in WP-Stateless – Google Cloud Storage 3.0.3, at static/scripts/wp-stateless-settings.js

24 lines 552 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 jQuery(document).ready(function($){
2
3 var smSelectTab = function(tab){
4 var $tab = $(".nav-tab-wrapper").find("[href='" + tab + "']");
5 if($tab.size() != 0){
6 $tab.addClass("nav-tab-active").siblings().removeClass("nav-tab-active");
7 $(tab).addClass("active").siblings().removeClass("active");
8 }
9 };
10
11 var tab = window.location.hash;
12 smSelectTab(tab);
13
14
15 jQuery('.stless_setting_tab').on('click', function(e){
16 e.preventDefault();
17
18 var tab = $(this).attr('href');
19 smSelectTab(tab);
20
21 return false;
22 });
23
24 });