Changeset 944740
- Timestamp:
- 07/08/2014 07:11:54 AM (12 years ago)
- Location:
- easy-responsive-tabs
- Files:
-
- 8 edited
-
tags/2.2/README.txt (modified) (1 diff)
-
tags/2.2/assets/css/ert_css.php (modified) (1 diff)
-
tags/2.2/assets/js/ert_js.php (modified) (1 diff)
-
tags/2.2/easy_res_tab.php (modified) (2 diffs)
-
trunk/README.txt (modified) (1 diff)
-
trunk/assets/css/ert_css.php (modified) (1 diff)
-
trunk/assets/js/ert_js.php (modified) (1 diff)
-
trunk/easy_res_tab.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
easy-responsive-tabs/tags/2.2/README.txt
r943919 r944740 70 70 == Changelog == 71 71 72 = 2.6 = 73 74 * [Fixes] fixed the undefined index ert_css & ert_js error message issue. 75 72 76 = 2.5 = 73 77 -
easy-responsive-tabs/tags/2.2/assets/css/ert_css.php
r903949 r944740 2 2 header("Content-type: text/css"); 3 3 session_start(); 4 echo $_SESSION['ert_css']; 4 if (isset($_SESSION['ert_css'])) { 5 echo $_SESSION['ert_css']; 6 } 5 7 ?> -
easy-responsive-tabs/tags/2.2/assets/js/ert_js.php
r920174 r944740 3 3 header("Content-type: text/javascript"); 4 4 echo 'jQuery(document).ready(function() {'; 5 echo $_SESSION['ert_js'];unset($_SESSION['ert_js']); 5 if (isset($_SESSION['ert_js'])) { 6 echo $_SESSION['ert_js']; 7 unset($_SESSION['ert_js']); 8 } 6 9 echo '});'; 7 10 ?> -
easy-responsive-tabs/tags/2.2/easy_res_tab.php
r943919 r944740 4 4 Plugin URI: http://www.oscitasthemes.com 5 5 Description: Make bootstrap tabs res. 6 Version: 2. 56 Version: 2.6 7 7 Author: oscitas 8 8 Author URI: http://www.oscitasthemes.com … … 253 253 wp_enqueue_script('ert_tab_js',ERT_ASSETS_URL.$this->resjs_path,array('jquery'),ERT_VERSION,true); 254 254 wp_enqueue_style('ert_tab_css',ERT_ASSETS_URL.$this->rescss_path); 255 wp_enqueue_script('ert_js',ERT_ASSETS_URL.'js/ert_js.php',array('jquery','ert_tab_js'),ERT_VERSION,true);256 wp_enqueue_style('ert_css',ERT_ASSETS_URL.'css/ert_css.php');255 if (isset($_SESSION['ert_js'])) wp_enqueue_script('ert_js',ERT_ASSETS_URL.'js/ert_js.php',array('jquery','ert_tab_js'),ERT_VERSION,true); 256 if (isset($_SESSION['ert_css'])) wp_enqueue_style('ert_css',ERT_ASSETS_URL.'css/ert_css.php'); 257 257 } 258 258 -
easy-responsive-tabs/trunk/README.txt
r943919 r944740 70 70 == Changelog == 71 71 72 = 2.6 = 73 74 * [Fixes] fixed the undefined index ert_css & ert_js error message issue. 75 72 76 = 2.5 = 73 77 -
easy-responsive-tabs/trunk/assets/css/ert_css.php
r810619 r944740 2 2 header("Content-type: text/css"); 3 3 session_start(); 4 echo $_SESSION['ert_css']; 4 if (isset($_SESSION['ert_css'])) { 5 echo $_SESSION['ert_css']; 6 } 5 7 ?> -
easy-responsive-tabs/trunk/assets/js/ert_js.php
r920174 r944740 3 3 header("Content-type: text/javascript"); 4 4 echo 'jQuery(document).ready(function() {'; 5 echo $_SESSION['ert_js'];unset($_SESSION['ert_js']); 5 if (isset($_SESSION['ert_js'])) { 6 echo $_SESSION['ert_js']; 7 unset($_SESSION['ert_js']); 8 } 6 9 echo '});'; 7 10 ?> -
easy-responsive-tabs/trunk/easy_res_tab.php
r943919 r944740 4 4 Plugin URI: http://www.oscitasthemes.com 5 5 Description: Make bootstrap tabs res. 6 Version: 2. 56 Version: 2.6 7 7 Author: oscitas 8 8 Author URI: http://www.oscitasthemes.com … … 253 253 wp_enqueue_script('ert_tab_js',ERT_ASSETS_URL.$this->resjs_path,array('jquery'),ERT_VERSION,true); 254 254 wp_enqueue_style('ert_tab_css',ERT_ASSETS_URL.$this->rescss_path); 255 wp_enqueue_script('ert_js',ERT_ASSETS_URL.'js/ert_js.php',array('jquery','ert_tab_js'),ERT_VERSION,true);256 wp_enqueue_style('ert_css',ERT_ASSETS_URL.'css/ert_css.php');255 if (isset($_SESSION['ert_js'])) wp_enqueue_script('ert_js',ERT_ASSETS_URL.'js/ert_js.php',array('jquery','ert_tab_js'),ERT_VERSION,true); 256 if (isset($_SESSION['ert_css'])) wp_enqueue_style('ert_css',ERT_ASSETS_URL.'css/ert_css.php'); 257 257 } 258 258
Note: See TracChangeset
for help on using the changeset viewer.