Easing Slider - Version 2.2.0.5

Version Description

  • Fixed bug that prevented CSS and Javascripts from loading in certain circumstances.
Download this release

Release Info

Developer MatthewRuddy
Plugin Icon 128x128 Easing Slider
Version 2.2.0.5
Comparing to
See all releases

Code changes from version 2.2.0.4 to 2.2.0.5

easing-slider.php CHANGED
@@ -3,7 +3,7 @@
3
  /*
4
  Plugin Name: Easing Slider
5
  Plugin URI: http://easingslider.com/
6
- Version: 2.2.0.4
7
  Author: Matthew Ruddy
8
  Author URI: http://matthewruddy.com/
9
  Description: Easing Slider is an easy to use slider plugin for WordPress. Simple, lightweight & designed to get the job done, it allows you to get creating sliders without any difficulty.
@@ -53,7 +53,14 @@ class Easing_Slider {
53
  *
54
  * @var string
55
  */
56
- public static $version = '2.2.0.4';
 
 
 
 
 
 
 
57
 
58
  /**
59
  * Constructor
3
  /*
4
  Plugin Name: Easing Slider
5
  Plugin URI: http://easingslider.com/
6
+ Version: 2.2.0.5
7
  Author: Matthew Ruddy
8
  Author URI: http://matthewruddy.com/
9
  Description: Easing Slider is an easy to use slider plugin for WordPress. Simple, lightweight & designed to get the job done, it allows you to get creating sliders without any difficulty.
53
  *
54
  * @var string
55
  */
56
+ public static $version = '2.2.0.5';
57
+
58
+ /**
59
+ * Our plugin file
60
+ *
61
+ * @var string
62
+ */
63
+ public static $file = __FILE__;
64
 
65
  /**
66
  * Constructor
includes/class-es-customizer.php CHANGED
@@ -79,8 +79,8 @@ class ES_Customizer {
79
  public function register_assets() {
80
 
81
  // Get our directories
82
- $css_dir = plugins_url( plugin_basename( dirname( __DIR__ ) ) ) . '/css';
83
- $js_dir = plugins_url( plugin_basename( dirname( __DIR__ ) ) ) . '/js';
84
 
85
  // Get file suffix
86
  $suffix = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min';
79
  public function register_assets() {
80
 
81
  // Get our directories
82
+ $css_dir = plugin_dir_url( Easing_Slider::$file ) . '/css';
83
+ $js_dir = plugin_dir_url( Easing_Slider::$file ) . '/js';
84
 
85
  // Get file suffix
86
  $suffix = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min';
includes/class-es-editor-pages.php CHANGED
@@ -109,8 +109,8 @@ class ES_Editor_Pages {
109
  public function register_assets() {
110
 
111
  // Get our directories
112
- $css_dir = plugins_url( plugin_basename( dirname( __DIR__ ) ) ) . '/css';
113
- $js_dir = plugins_url( plugin_basename( dirname( __DIR__ ) ) ) . '/js';
114
 
115
  // Get file suffix
116
  $suffix = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min';
109
  public function register_assets() {
110
 
111
  // Get our directories
112
+ $css_dir = plugin_dir_url( Easing_Slider::$file ) . '/css';
113
+ $js_dir = plugin_dir_url( Easing_Slider::$file ) . '/js';
114
 
115
  // Get file suffix
116
  $suffix = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min';
includes/class-es-extensions-page.php CHANGED
@@ -75,7 +75,7 @@ class ES_Extensions_Page {
75
  public function register_assets() {
76
 
77
  // Get our directory
78
- $css_dir = plugins_url( plugin_basename( dirname( __DIR__ ) ) ) . '/css';
79
 
80
  // Get file suffix
81
  $suffix = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min';
75
  public function register_assets() {
76
 
77
  // Get our directory
78
+ $css_dir = plugin_dir_url( Easing_Slider::$file ) . '/css';
79
 
80
  // Get file suffix
81
  $suffix = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min';
includes/class-es-settings-page.php CHANGED
@@ -76,7 +76,7 @@ class ES_Settings_Page {
76
  public function register_assets() {
77
 
78
  // Get our directory
79
- $css_dir = plugins_url( plugin_basename( dirname( __DIR__ ) ) ) . '/css';
80
 
81
  // Get file suffix
82
  $suffix = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min';
76
  public function register_assets() {
77
 
78
  // Get our directory
79
+ $css_dir = plugin_dir_url( Easing_Slider::$file ) . '/css';
80
 
81
  // Get file suffix
82
  $suffix = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min';
includes/class-es-slider.php CHANGED
@@ -301,8 +301,8 @@ class ES_Slider {
301
  public function register_assets() {
302
 
303
  // Get our directories
304
- $css_dir = plugins_url( plugin_basename( dirname( __DIR__ ) ) ) . '/css';
305
- $js_dir = plugins_url( plugin_basename( dirname( __DIR__ ) ) ) . '/js';
306
 
307
  // Get file suffix
308
  $suffix = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min';
301
  public function register_assets() {
302
 
303
  // Get our directories
304
+ $css_dir = plugin_dir_url( Easing_Slider::$file ) . '/css';
305
+ $js_dir = plugin_dir_url( Easing_Slider::$file ) . '/js';
306
 
307
  // Get file suffix
308
  $suffix = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min';
includes/class-es-welcome-pages.php CHANGED
@@ -64,7 +64,7 @@ class ES_Welcome_Pages {
64
  public function register_assets() {
65
 
66
  // Get our directory
67
- $css_dir = plugins_url( plugin_basename( dirname( __DIR__ ) ) ) . '/css';
68
 
69
  // Get file suffix
70
  $suffix = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min';
64
  public function register_assets() {
65
 
66
  // Get our directory
67
+ $css_dir = plugin_dir_url( Easing_Slider::$file ) . '/css';
68
 
69
  // Get file suffix
70
  $suffix = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min';
readme.txt CHANGED
@@ -4,7 +4,7 @@ Contributors: MatthewRuddy
4
  Tags: slideshow, slider, slides, slide, gallery, images, image, responsive, mobile, jquery, javascript, featured, content
5
  Requires at least: 4.0
6
  Tested up to: 4.2
7
- Stable tag: 2.2.0.4
8
 
9
  Easing Slider is an easy to use slider plugin. Simple and lightweight, is makes creating beautiful WordPress sliders a breeze.
10
 
@@ -73,6 +73,9 @@ This is easy. When editing a slider in the "All Sliders" admin area, simply clic
73
 
74
  == Changelog ==
75
 
 
 
 
76
  = 2.2.0.4 =
77
  * Added additional legacy functionality to display sliders using template function and shortcode from v1 of Easing Slider.
78
 
4
  Tags: slideshow, slider, slides, slide, gallery, images, image, responsive, mobile, jquery, javascript, featured, content
5
  Requires at least: 4.0
6
  Tested up to: 4.2
7
+ Stable tag: 2.2.0.5
8
 
9
  Easing Slider is an easy to use slider plugin. Simple and lightweight, is makes creating beautiful WordPress sliders a breeze.
10
 
73
 
74
  == Changelog ==
75
 
76
+ = 2.2.0.5 =
77
+ * Fixed bug that prevented CSS and Javascripts from loading in certain circumstances.
78
+
79
  = 2.2.0.4 =
80
  * Added additional legacy functionality to display sliders using template function and shortcode from v1 of Easing Slider.
81