Changeset 1008954
- Timestamp:
- 10/17/2014 06:32:26 AM (11 years ago)
- Location:
- advanced-browser-check
- Files:
-
- 2 deleted
- 3 edited
- 6 copied
-
tags/4.0.1 (copied) (copied from advanced-browser-check/trunk)
-
tags/4.0.1/abc-core.php (copied) (copied from advanced-browser-check/trunk/abc-core.php) (1 diff)
-
tags/4.0.1/abc-output.php (copied) (copied from advanced-browser-check/trunk/abc-output.php)
-
tags/4.0.1/abc-settings-page.php (copied) (copied from advanced-browser-check/trunk/abc-settings-page.php)
-
tags/4.0.1/advanced-browser-check.php (copied) (copied from advanced-browser-check/trunk/advanced-browser-check.php) (1 diff)
-
tags/4.0.1/cache (deleted)
-
tags/4.0.1/lib (deleted)
-
tags/4.0.1/readme.txt (copied) (copied from advanced-browser-check/trunk/readme.txt) (2 diffs)
-
trunk/abc-core.php (modified) (1 diff)
-
trunk/advanced-browser-check.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
advanced-browser-check/tags/4.0.1/abc-core.php
r1008951 r1008954 219 219 220 220 // jQuery cookie, used to add a cookie so visitors can hide the popup 221 wp_enqueue_script("apc_jquery_cookie", plugins_url('/js/jquery.cookie.js', __FILE__) );221 wp_enqueue_script("apc_jquery_cookie", plugins_url('/js/jquery.cookie.js', __FILE__), array('jquery')); 222 222 223 223 // The ajax request so the plugin works with caching plugins 224 wp_enqueue_script("abc_script", plugins_url('/js/script.js', __FILE__) );224 wp_enqueue_script("abc_script", plugins_url('/js/script.js', __FILE__), array('jquery')); 225 225 } 226 226 -
advanced-browser-check/tags/4.0.1/advanced-browser-check.php
r1008951 r1008954 5 5 Description: Tell IE users to change browser? Or is your site for Chrome only? Now you choose what browsers should trigger a warning popup or not on your site. 6 6 Author: Mattias Hedman 7 Version: 4.0. 07 Version: 4.0.1 8 8 Author URI: http://www.darkwhispering.com 9 9 */ 10 10 11 define('ABC_VERSION', '4.0. 0');11 define('ABC_VERSION', '4.0.1'); 12 12 13 13 if(!defined('ABC_DIR_PATH')) { -
advanced-browser-check/tags/4.0.1/readme.txt
r1008951 r1008954 5 5 Requires at least: 3.0.0 6 6 Tested up to: 4.0.0 7 Stable tag: 4.0. 07 Stable tag: 4.0.1 8 8 9 9 Tell IE users to change browser? Or is your site for Chrome only? Now you choose what browsers should trigger a warning popup or not on your site. … … 87 87 == Changelog == 88 88 89 = 4.0.1 = 90 * Added missing jquery dependency to wp_enqueue_script 91 89 92 = 4.0.0 = 90 93 * Reverted back from Browscap, it gave more problems and issues then it solved. -
advanced-browser-check/trunk/abc-core.php
r1008951 r1008954 219 219 220 220 // jQuery cookie, used to add a cookie so visitors can hide the popup 221 wp_enqueue_script("apc_jquery_cookie", plugins_url('/js/jquery.cookie.js', __FILE__) );221 wp_enqueue_script("apc_jquery_cookie", plugins_url('/js/jquery.cookie.js', __FILE__), array('jquery')); 222 222 223 223 // The ajax request so the plugin works with caching plugins 224 wp_enqueue_script("abc_script", plugins_url('/js/script.js', __FILE__) );224 wp_enqueue_script("abc_script", plugins_url('/js/script.js', __FILE__), array('jquery')); 225 225 } 226 226 -
advanced-browser-check/trunk/advanced-browser-check.php
r1008951 r1008954 5 5 Description: Tell IE users to change browser? Or is your site for Chrome only? Now you choose what browsers should trigger a warning popup or not on your site. 6 6 Author: Mattias Hedman 7 Version: 4.0. 07 Version: 4.0.1 8 8 Author URI: http://www.darkwhispering.com 9 9 */ 10 10 11 define('ABC_VERSION', '4.0. 0');11 define('ABC_VERSION', '4.0.1'); 12 12 13 13 if(!defined('ABC_DIR_PATH')) { -
advanced-browser-check/trunk/readme.txt
r1008951 r1008954 5 5 Requires at least: 3.0.0 6 6 Tested up to: 4.0.0 7 Stable tag: 4.0. 07 Stable tag: 4.0.1 8 8 9 9 Tell IE users to change browser? Or is your site for Chrome only? Now you choose what browsers should trigger a warning popup or not on your site. … … 87 87 == Changelog == 88 88 89 = 4.0.1 = 90 * Added missing jquery dependency to wp_enqueue_script 91 89 92 = 4.0.0 = 90 93 * Reverted back from Browscap, it gave more problems and issues then it solved.
Note: See TracChangeset
for help on using the changeset viewer.