Changeset 1810608
- Timestamp:
- 01/28/2018 12:39:40 AM (8 years ago)
- Location:
- ra-widgets-parallax/trunk
- Files:
-
- 2 edited
-
ra-widgets-parallax.php (modified) (3 diffs)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
ra-widgets-parallax/trunk/ra-widgets-parallax.php
r1798651 r1810608 4 4 Plugin URI: https://github.com/webdevsuperfast/ra-widgets-parallax 5 5 Description: Add parallax scrolling image effect on your widgets. 6 Version: 1.0. 36 Version: 1.0.4 7 7 Author: Rotsen Mark Acob 8 8 Author URI: https://rotsenacob.com/ … … 14 14 15 15 defined( 'ABSPATH' ) or die( esc_html_e( 'With great power comes great responsibility.', 'ra-widgets-parallax' ) ); 16 17 $plugin_data = get_plugin_data( __FILE__ );18 19 define( 'RAWP_VERSION', $plugin_data['Version'] );20 16 21 17 class RA_Widgets_Parallax { … … 150 146 if ( !is_admin() ) { 151 147 // Parallax JS 152 wp_register_script( 'rawp-parallax-js', plugin_dir_url( __FILE__ ) . 'public/js/parallax.min.js', array( 'jquery' ), RAWP_VERSION, true );148 wp_register_script( 'rawp-parallax-js', plugin_dir_url( __FILE__ ) . 'public/js/parallax.min.js', array( 'jquery' ), null, true ); 153 149 wp_enqueue_script( 'rawp-parallax-js' ); 154 150 -
ra-widgets-parallax/trunk/readme.txt
r1798651 r1810608 4 4 Tags: parallax.js, parallax, widgets 5 5 Requires at least: 4.7 6 Tested up to: 4.9. 17 Stable tag: 1.0. 36 Tested up to: 4.9.2 7 Stable tag: 1.0.4 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 32 32 33 33 == Changelog == 34 = 1.0.4 = 35 * Removed $plugin_data that causes undefined function error. 36 34 37 = 1.0.3 = 35 38 * Reverted back to Parallax.js, updated form fields, hide form fields when using SiteOrigin Panels, better image handling, style changes. … … 45 48 46 49 == Upgrade Notice == 50 = 1.0.4 = 51 Removed $plugin_data that causes undefined function error. 52 47 53 = 1.0.3 = 48 54 Reverted back to Parallax.js, updated form fields, hide form fields when using SiteOrigin Panels, better image handling, style changes.
Note: See TracChangeset
for help on using the changeset viewer.