Changeset 859779
- Timestamp:
- 02/17/2014 11:59:54 PM (12 years ago)
- Location:
- headwp/trunk
- Files:
-
- 3 edited
-
head-js-wp.php (modified) (2 diffs)
-
inc/class-view-head-js-wp.php (modified) (1 diff)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
headwp/trunk/head-js-wp.php
r858619 r859779 5 5 Description: A plugin to load footer scripts with head.js 6 6 Author: Kyle Reicks 7 Version: 2.0. 27 Version: 2.0.3 8 8 Author URI: http://github.com/kylereicks/ 9 9 */ … … 11 11 define('HEAD_JS_WP_PATH', plugin_dir_path(__FILE__)); 12 12 define('HEAD_JS_WP_URL', plugins_url('/', __FILE__)); 13 define('HEAD_JS_WP_VERSION', '2.0. 2');13 define('HEAD_JS_WP_VERSION', '2.0.3'); 14 14 define('HEAD_JS_VERSION', '1.0.3'); 15 15 -
headwp/trunk/inc/class-view-head-js-wp.php
r856065 r859779 6 6 global $wp_scripts; 7 7 8 foreach($model->queue as $ handle => $src){9 $wp_scripts->print_extra_script($ handle);8 foreach($model->queue as $script){ 9 $wp_scripts->print_extra_script($script['handle']); 10 10 } 11 11 -
headwp/trunk/readme.txt
r858619 r859779 5 5 Requires at least: 3.2 6 6 Tested up to: 3.8.1 7 Stable tag: 2.0. 27 Stable tag: 2.0.3 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 48 48 == Changelog == 49 49 50 = 2.0.3 = 51 * Fix reference error when localizing scripts. 52 50 53 = 2.0.2 = 51 54 * Fix warning on log-in page. … … 65 68 == Upgrade Notice == 66 69 67 = 2.0. 2=68 Bug fix update. Cleans up warning on the log-in page and supress output when no scripts need to be loaded.70 = 2.0.3 = 71 Bug fix update. Cleans up reference error when localizing scripts.
Note: See TracChangeset
for help on using the changeset viewer.