MouseWheel Smooth Scroll - Version 2.3

Version Description

  • Enqueue script in footer
Download this release

Release Info

Developer kubiq
Plugin Icon 128x128 MouseWheel Smooth Scroll
Version 2.3
Comparing to
See all releases

Code changes from version 2.2 to 2.3

Files changed (2) hide show
  1. mousewheel-smooth-scroll.php +2 -2
  2. readme.txt +5 -2
mousewheel-smooth-scroll.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: MouseWheel Smooth Scroll
4
  Plugin URI: http://kubiq.sk
5
  Description: MouseWheel smooth scrolling for your WordPress website
6
- Version: 2.2
7
  Author: Jakub Novák
8
  Author URI: http://kubiq.sk
9
  */
@@ -52,7 +52,7 @@ if (!class_exists('wpmss')) {
52
  'step' => isset( $this->settings['general']['step'] ) && trim( $this->settings['general']['step'] ) != "" ? $this->settings['general']['step'] : 100,
53
  'speed' => isset( $this->settings['general']['speed'] ) && trim( $this->settings['general']['step'] ) != "" ? $this->settings['general']['speed'] : 400,
54
  );
55
- wp_enqueue_script( 'wpmss_scroll_scripts', plugins_url( 'js/wpmss.php?'.http_build_query($options), __FILE__ ), array('jquery'));
56
  }
57
 
58
  function plugin_admin_tabs( $current = 'general' ) {
3
  Plugin Name: MouseWheel Smooth Scroll
4
  Plugin URI: http://kubiq.sk
5
  Description: MouseWheel smooth scrolling for your WordPress website
6
+ Version: 2.3
7
  Author: Jakub Novák
8
  Author URI: http://kubiq.sk
9
  */
52
  'step' => isset( $this->settings['general']['step'] ) && trim( $this->settings['general']['step'] ) != "" ? $this->settings['general']['step'] : 100,
53
  'speed' => isset( $this->settings['general']['speed'] ) && trim( $this->settings['general']['step'] ) != "" ? $this->settings['general']['speed'] : 400,
54
  );
55
+ wp_enqueue_script( 'wpmss_scroll_scripts', plugins_url( 'js/wpmss.php?'.http_build_query($options), __FILE__ ), array('jquery'), 1, 1 );
56
  }
57
 
58
  function plugin_admin_tabs( $current = 'general' ) {
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://kubiq.sk
4
  Tags: smooth scroll, mousewheel scroll, scrolling
5
  Requires at least: 3.0.1
6
  Tested up to: 4.5
7
- Stable tag: 2.2
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -71,4 +71,7 @@ Replace basic scrolling "effect" with nice smooth scroll
71
  * Tested on WP 4.5
72
 
73
  = 2.2 =
74
- * Escaping option values for better security
 
 
 
4
  Tags: smooth scroll, mousewheel scroll, scrolling
5
  Requires at least: 3.0.1
6
  Tested up to: 4.5
7
+ Stable tag: 2.3
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
71
  * Tested on WP 4.5
72
 
73
  = 2.2 =
74
+ * Escaping option values for better security
75
+
76
+ = 2.3 =
77
+ * Enqueue script in footer