Master Slider – Responsive Touch Slider - Version 1.4.0

Version Description

Download this release

Release Info

Developer averta
Plugin Icon 128x128 Master Slider – Responsive Touch Slider
Version 1.4.0
Comparing to
See all releases

Code changes from version 1.3.9 to 1.4.0

README.txt CHANGED
@@ -5,8 +5,8 @@ License: GPLv3
5
  License URI: http://www.gnu.org/licenses/gpl.html
6
  Tags: banner rotator, carousel, content slider, gallery, image slider, responsive slider, showcase, slideshow, swipe, touch slider, video gallery, SEO, vertical slide, HTML5 slider, hardware accelerate, css3, animation, mobile slider, iOS, android, video slider, youtube slider, horizontal slider, vertical slider, fullwidth slider, fullscreen slider, post slider, photo slider, online album, mobile slider, WordPress slider,wpml, ,ultisite, wistia, woocommerce, product slider, woocommerce slider, portfolio, gallery
7
  Requires at least: 3.8
8
- Tested up to: 4.0.1
9
- Stable tag: 1.3.9
10
 
11
  The Most advanced responsive HTML5 WordPress slider plugin with touch swipe navigation that works smoothly on devices too.
12
 
@@ -226,6 +226,9 @@ Bugs can be reported in our [support forums](http://wordpress.org/tags/master-sl
226
 
227
  == Changelog ==
228
 
 
 
 
229
  = Version 1.3.9 / (22.11.2014) =
230
  - Some class names renamed to eliminate the conflict with others themes and plugins.
231
 
@@ -298,5 +301,5 @@ Bugs can be reported in our [support forums](http://wordpress.org/tags/master-sl
298
 
299
  == Upgrade Notice ==
300
 
301
- = 1.3.9 =
302
- - Some improvements applied
5
  License URI: http://www.gnu.org/licenses/gpl.html
6
  Tags: banner rotator, carousel, content slider, gallery, image slider, responsive slider, showcase, slideshow, swipe, touch slider, video gallery, SEO, vertical slide, HTML5 slider, hardware accelerate, css3, animation, mobile slider, iOS, android, video slider, youtube slider, horizontal slider, vertical slider, fullwidth slider, fullscreen slider, post slider, photo slider, online album, mobile slider, WordPress slider,wpml, ,ultisite, wistia, woocommerce, product slider, woocommerce slider, portfolio, gallery
7
  Requires at least: 3.8
8
+ Tested up to: 4.1.0
9
+ Stable tag: 1.4.0
10
 
11
  The Most advanced responsive HTML5 WordPress slider plugin with touch swipe navigation that works smoothly on devices too.
12
 
226
 
227
  == Changelog ==
228
 
229
+ = Version 1.4.0 / (19.12.2014) =
230
+ - A conflict with modal in WordPress 4.1 fixed
231
+
232
  = Version 1.3.9 / (22.11.2014) =
233
  - Some class names renamed to eliminate the conflict with others themes and plugins.
234
 
301
 
302
  == Upgrade Notice ==
303
 
304
+ = 1.4.0 =
305
+ - A conflict with modal in WordPress 4.1 fixed
admin/assets/css/msp-general.css CHANGED
@@ -521,3 +521,10 @@ tbody .latest-updates {
521
 
522
 
523
  .msp-template-caption { min-height: 38px; }
 
 
 
 
 
 
 
521
 
522
 
523
  .msp-template-caption { min-height: 38px; }
524
+
525
+ .msp-main-nav ul li a:focus,
526
+ .tabs li > a:focus,
527
+ #contextual-help-wrap:focus,
528
+ #msp-main-wrapper .column-title a:focus{
529
+ box-shadow:none;
530
+ }
admin/assets/js/admin.js CHANGED
@@ -26,12 +26,15 @@
26
  $('.ui-widget-overlay').bind('click',function(){
27
  $slider_types_markup.dialog('close');
28
  });
 
 
 
 
29
  }
30
  });
31
 
32
  window.onSelectorDialogResize = function(event){
33
  var frame = event.data.the_frame;
34
- frame.dialog("option", "position", "center");
35
  frame.dialog("option", "width" , "80%" );
36
  frame.dialog("option", "height" , $(window).height()-90 );
37
  };
@@ -144,6 +147,10 @@
144
  $('.ui-widget-overlay').bind('click',function(){
145
  $preview_wrapper.dialog('close');
146
  });
 
 
 
 
147
  }
148
  });
149
 
@@ -156,7 +163,6 @@
156
 
157
  window.onPreviewDialogResize = function(event){
158
  var frame = event.data.the_frame;
159
- frame.dialog("option", "position", "center");
160
  frame.dialog("option", "height" , $(window).height()-45 );
161
  };
162
 
@@ -192,6 +198,10 @@
192
  $('.ui-widget-overlay').bind('click',function(){
193
  $preview_wrapper.dialog('close');
194
  });
 
 
 
 
195
  }
196
  });
197
 
@@ -208,7 +218,6 @@
208
 
209
  window.onPreviewDialogResize = function(event){
210
  var frame = event.data.the_frame;
211
- frame.dialog("option", "position", "center");
212
  frame.dialog("option", "height" , $(window).height()-45 );
213
  };
214
 
@@ -241,13 +250,16 @@
241
  $('.ui-widget-overlay').bind('click',function(){
242
  $import_export_wrapper.dialog('close');
243
  });
 
 
 
 
244
  }
245
  });
246
 
247
  window.onPreviewDialogResize = function(event){
248
  var frame = event.data.the_frame;
249
  var dialogHeight = $(window).height()-85;
250
- frame.dialog("option", "position", "center");
251
  frame.dialog("option", "height" , dialogHeight );
252
  $('.msp-export-table-container').css('min-height', dialogHeight - 350 );
253
  };
26
  $('.ui-widget-overlay').bind('click',function(){
27
  $slider_types_markup.dialog('close');
28
  });
29
+ },
30
+ position: {
31
+ my: "center",
32
+ at: "center"
33
  }
34
  });
35
 
36
  window.onSelectorDialogResize = function(event){
37
  var frame = event.data.the_frame;
 
38
  frame.dialog("option", "width" , "80%" );
39
  frame.dialog("option", "height" , $(window).height()-90 );
40
  };
147
  $('.ui-widget-overlay').bind('click',function(){
148
  $preview_wrapper.dialog('close');
149
  });
150
+ },
151
+ position: {
152
+ my: "center",
153
+ at: "center"
154
  }
155
  });
156
 
163
 
164
  window.onPreviewDialogResize = function(event){
165
  var frame = event.data.the_frame;
 
166
  frame.dialog("option", "height" , $(window).height()-45 );
167
  };
168
 
198
  $('.ui-widget-overlay').bind('click',function(){
199
  $preview_wrapper.dialog('close');
200
  });
201
+ },
202
+ position: {
203
+ my: "center",
204
+ at: "center"
205
  }
206
  });
207
 
218
 
219
  window.onPreviewDialogResize = function(event){
220
  var frame = event.data.the_frame;
 
221
  frame.dialog("option", "height" , $(window).height()-45 );
222
  };
223
 
250
  $('.ui-widget-overlay').bind('click',function(){
251
  $import_export_wrapper.dialog('close');
252
  });
253
+ },
254
+ position: {
255
+ my: "center",
256
+ at: "center"
257
  }
258
  });
259
 
260
  window.onPreviewDialogResize = function(event){
261
  var frame = event.data.the_frame;
262
  var dialogHeight = $(window).height()-85;
 
263
  frame.dialog("option", "height" , dialogHeight );
264
  $('.msp-export-table-container').css('min-height', dialogHeight - 350 );
265
  };
includes/init/define.php CHANGED
@@ -5,7 +5,7 @@ if ( ! defined('ABSPATH') ) {
5
  die();
6
  }
7
 
8
- define( 'MSWP_AVERTA_VERSION' , '1.3.9' );
9
 
10
  define( 'MSWP_SLUG' , 'master-slider' );
11
  define( 'MSWP_TEXT_DOMAIN' , 'masterslider' );
5
  die();
6
  }
7
 
8
+ define( 'MSWP_AVERTA_VERSION' , '1.4.0' );
9
 
10
  define( 'MSWP_SLUG' , 'master-slider' );
11
  define( 'MSWP_TEXT_DOMAIN' , 'masterslider' );
master-slider.php CHANGED
@@ -11,13 +11,13 @@
11
  * Plugin Name: Master Slider
12
  * Plugin URI: https://wordpress.org/plugins/master-slider/
13
  * Description: Master Slider is the most advanced responsive HTML5 WordPress slider plugin with touch swipe navigation that works smoothly on devices too.
14
- * Version: 1.3.9
15
  * Author: averta
16
  * Author URI: http://averta.net
17
  * Text Domain: master-slider
18
  * License URI: license.txt
19
  * Domain Path: /languages
20
- * Tested up to: 4.0.1
21
  */
22
 
23
  // If this file is called directly, abort.
11
  * Plugin Name: Master Slider
12
  * Plugin URI: https://wordpress.org/plugins/master-slider/
13
  * Description: Master Slider is the most advanced responsive HTML5 WordPress slider plugin with touch swipe navigation that works smoothly on devices too.
14
+ * Version: 1.4.0
15
  * Author: averta
16
  * Author URI: http://averta.net
17
  * Text Domain: master-slider
18
  * License URI: license.txt
19
  * Domain Path: /languages
20
+ * Tested up to: 4.1.0
21
  */
22
 
23
  // If this file is called directly, abort.