Changeset 740377
- Timestamp:
- 07/13/2013 09:27:14 PM (13 years ago)
- Location:
- rg-slider/tags/1.2
- Files:
-
- 2 edited
-
readme.txt (modified) (3 diffs)
-
rg-slider.php (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
rg-slider/tags/1.2/readme.txt
r735868 r740377 3 3 Requires at least: 3.5 4 4 Tested up to: 3.5.2 5 Stable tag: 1. 15 Stable tag: 1.2 6 6 License: GPLv2 7 7 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 20 20 * Crop images to size without the use of Photoshop or something 21 21 * Set all kinds of options (image size, image quality, slideshow animation) 22 * UI that's very close to the native WordPress feel. 22 * UI that's very close to the native WordPress feel. 23 23 * Available in English and Dutch (Other translations wanted!) 24 24 … … 39 39 = 1.1 = 40 40 * Fixed bug where pagination in list table didn't show 41 * Fixed bug that prevented all slides to be loaded 41 * Fixed bug that prevented all slides to be loaded 42 43 = 1.2 = 44 * Fixed bug where the editor on all pages was pushed over the slug buttons. -
rg-slider/tags/1.2/rg-slider.php
r735868 r740377 5 5 Plugin URI: http://robgloudemans.nl/rg-slider 6 6 Description: A jQuery slideshow on your website/blog made easy 7 Version: 1. 17 Version: 1.2 8 8 Author: Rob Gloudemans 9 9 Author URI: http://robgloudemans.nl … … 167 167 wp_enqueue_style('jcrop'); 168 168 169 // Because of our hack with the submenu page without a parent, 169 // Because of our hack with the submenu page without a parent, 170 170 // we need this extra javascript script to set the active menu item 171 171 // Only cosmetic … … 182 182 // And enqueue the main scripts file 183 183 wp_enqueue_script('rg-slide-main', plugins_url('assets/js/rg-slider-scripts.js', __FILE__), array('jquery'), '1.0', TRUE); 184 184 185 185 // Localize the main scripts file and add the l10n object for translation 186 186 wp_localize_script('rg-slide-main', 'rg_l10n_object', array( … … 222 222 'value' => $r['permalink'] 223 223 ); 224 224 225 225 array_push($result, $temp); 226 226 } … … 247 247 add_shortcode('rg-slider', 'rg_slider_shortcode'); 248 248 249 function rg_slider_shortcode($atts) 249 function rg_slider_shortcode($atts) 250 250 { 251 251 if( ! array_key_exists('show', $atts))
Note: See TracChangeset
for help on using the changeset viewer.