Changeset 394417
- Timestamp:
- 06/08/2011 02:19:13 AM (15 years ago)
- Location:
- shadowbox-js/trunk
- Files:
-
- 4 edited
-
inc/frontend.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
shadowbox-js.php (modified) (3 diffs)
-
shadowbox-title-push.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
shadowbox-js/trunk/inc/frontend.php
r392924 r394417 153 153 } 154 154 155 wp_register_script ( 'shadowbox' , apply_filters ( 'shadowbox-js' , $shadowbox ) , false , $this->sbversion , true ); 155 $dependency = $adapter != 'base' ? array ( $adapter ) : false; 156 wp_register_script ( 'shadowbox' , apply_filters ( 'shadowbox-js' , $shadowbox ) , $dependency , $this->sbversion , true ); 156 157 157 158 // If we aren't smart loading go ahead and enqueue, otherwise we will enqueue later -
shadowbox-js/trunk/readme.txt
r394412 r394417 135 135 == Upgrade Notice == 136 136 137 = 3.0.3.8 = 138 139 Missing javascript dependency registration, hook into post generation later if Smart Loading is disabled, and fix Javascript code comments so that broken HTML minification processes will not have any affect on Shadowbox. 140 137 141 = 3.0.3.7 = 138 142 … … 157 161 == Changelog == 158 162 159 = 3.0.3.7 (2001-06-07): = 163 = 3.0.3.8 (2011-06-08): = 164 * Due to large reworkings script dependencies were not being loaded when a library other than 'None' was selected on the settings page 165 166 = 3.0.3.7 (2011-06-07): = 160 167 * Missed a merge 161 168 -
shadowbox-js/trunk/shadowbox-js.php
r394412 r394417 8 8 * 9 9 * @author Matt Martz <matt@sivel.net> 10 * @version 3.0.3. 710 * @version 3.0.3.8 11 11 * @package shadowbox-js 12 12 */ … … 16 16 Plugin URI: http://sivel.net/wordpress/shadowbox-js/ 17 17 Description: A javascript media viewer similar to Lightbox and Thickbox. Supports all types of media, not just images. 18 Version: 3.0.3. 718 Version: 3.0.3.8 19 19 Author: Matt Martz 20 20 Author URI: http://sivel.net/ … … 56 56 * @var int 57 57 */ 58 var $version = '3.0.3. 7';58 var $version = '3.0.3.8'; 59 59 60 60 /** -
shadowbox-js/trunk/shadowbox-title-push.php
r394412 r394417 14 14 Plugin URI: http://sivel.net/wordpress/shadowbox-js/ 15 15 Description: Push the title attribute from the img tag to the anchor tag 16 Version: 3.0.3. 716 Version: 3.0.3.8 17 17 Author: Matt Martz 18 18 Author URI: http://sivel.net/
Note: See TracChangeset
for help on using the changeset viewer.