Slider by Soliloquy – Responsive Image Slider for WordPress - Version 2.1.3

Version Description

  • Fixed bug with link dialog modal showing below the edit metadata modal.
  • Fixed issue with max_execution_time on some hosts when cropping images.
  • Fixed Retina display bug with Classic theme.
  • Fixed contextual language bug in edit metadata modal.
Download this release

Release Info

Developer griffinjt
Plugin Icon 128x128 Slider by Soliloquy – Responsive Image Slider for WordPress
Version 2.1.3
Comparing to
See all releases

Code changes from version 2.1.2 to 2.1.3

assets/js/metabox.js CHANGED
@@ -535,12 +535,18 @@
535
  e.preventDefault();
536
  $('#' + formfield).appendTo('#' + attach_id).hide();
537
  soliloquy_main_frame = false;
 
538
  };
539
  $(document).on('click.soliloquyIframe', '.media-modal-close, .media-modal-backdrop', append_and_hide);
540
  $(document).on('keydown.soliloquyIframe', function(e){
541
  if ( 27 == e.keyCode && soliloquy_main_frame )
542
  append_and_hide(e);
543
  });
 
 
 
 
 
544
  });
545
 
546
  // Save the slider metadata.
535
  e.preventDefault();
536
  $('#' + formfield).appendTo('#' + attach_id).hide();
537
  soliloquy_main_frame = false;
538
+ $(document).off('click.soliloquyLink');
539
  };
540
  $(document).on('click.soliloquyIframe', '.media-modal-close, .media-modal-backdrop', append_and_hide);
541
  $(document).on('keydown.soliloquyIframe', function(e){
542
  if ( 27 == e.keyCode && soliloquy_main_frame )
543
  append_and_hide(e);
544
  });
545
+ $(document).on('click.soliloquyLink', '.ed_button', function(){
546
+ // Set custom z-index for link dialog box.
547
+ $('#wp-link-backdrop').css('zIndex', '170100');
548
+ $('#wp-link-wrap').css('zIndex', '171005' );
549
+ });
550
  });
551
 
552
  // Save the slider metadata.
includes/admin/ajax.php CHANGED
@@ -20,7 +20,7 @@ function soliloquy_lite_ajax_upgrade_sliders() {
20
  check_ajax_referer( 'soliloquy-upgrade', 'nonce' );
21
 
22
  // Increase the time limit to account for large slider sets and suspend cache invalidations.
23
- set_time_limit( 0 );
24
  wp_suspend_cache_invalidation( true );
25
 
26
  // Grab all sliders and convert them to the new system.
@@ -43,15 +43,15 @@ function soliloquy_lite_ajax_upgrade_sliders() {
43
  'slider' => array(),
44
  'status' => 'active'
45
  );
46
-
47
  if ( ! empty( $new_meta['config']['gutter'] ) ) {
48
  $new_meta['config']['gutter'] = 0;
49
  }
50
-
51
  if ( ! empty( $new_meta['config']['position'] ) ) {
52
  $new_meta['config']['position'] = 'none';
53
  }
54
-
55
  if ( ! empty( $new_meta['config']['mobile'] ) ) {
56
  $new_meta['config']['mobile'] = 0;
57
  }
20
  check_ajax_referer( 'soliloquy-upgrade', 'nonce' );
21
 
22
  // Increase the time limit to account for large slider sets and suspend cache invalidations.
23
+ set_time_limit( Soliloquy_Common_Lite::get_instance()->get_max_execution_time() );
24
  wp_suspend_cache_invalidation( true );
25
 
26
  // Grab all sliders and convert them to the new system.
43
  'slider' => array(),
44
  'status' => 'active'
45
  );
46
+
47
  if ( ! empty( $new_meta['config']['gutter'] ) ) {
48
  $new_meta['config']['gutter'] = 0;
49
  }
50
+
51
  if ( ! empty( $new_meta['config']['position'] ) ) {
52
  $new_meta['config']['position'] = 'none';
53
  }
54
+
55
  if ( ! empty( $new_meta['config']['mobile'] ) ) {
56
  $new_meta['config']['mobile'] = 0;
57
  }
includes/admin/metaboxes.php CHANGED
@@ -947,10 +947,10 @@ class Soliloquy_Metaboxes_Lite {
947
  $item = $this->get_slider_image( $id, $data, $post_id );
948
  break;
949
  case 'video' :
950
- $item = $this->get_slider_video( $id, $data, $post_id );
951
  break;
952
  case 'html' :
953
- $item = $this->get_slider_html( $id, $data, $post_id );
954
  break;
955
  }
956
 
@@ -1050,10 +1050,12 @@ class Soliloquy_Metaboxes_Lite {
1050
  <div class="media-sidebar">
1051
  <div class="soliloquy-meta-sidebar">
1052
  <h3><?php _e( 'Helpful Tips', 'soliloquy' ); ?></h3>
1053
- <strong><?php _e( 'Image Titles', 'soliloquy' ); ?></strong>
1054
- <p><?php _e( 'Image titles can take any type of HTML. You can adjust the position of the titles in the main Lightbox settings.', 'soliloquy' ); ?></p>
1055
  <strong><?php _e( 'Image Hyperlinks', 'soliloquy' ); ?></strong>
1056
- <p><?php _e( 'The image hyperlink field is used when you click on an image in the slider. It determines what is displayed in the lightbox view. It could be a larger version of the image, a video, or some other form of content.', 'soliloquy' ); ?></p>
 
 
1057
  <strong><?php _e( 'Saving and Exiting', 'soliloquy' ); ?></strong>
1058
  <p class="no-margin"><?php _e( 'Click on the button below to save your image metadata. You can close this window by either clicking on the "X" above or hitting the <code>esc</code> key on your keyboard.', 'soliloquy' ); ?></p>
1059
  </div><!-- end .soliloquy-meta-sidebar -->
@@ -1118,7 +1120,7 @@ class Soliloquy_Metaboxes_Lite {
1118
  // Loop through the images and crop them.
1119
  if ( $images ) {
1120
  // Increase the time limit to account for large image sets and suspend cache invalidations.
1121
- set_time_limit( 0 );
1122
  wp_suspend_cache_invalidation( true );
1123
 
1124
  foreach ( $images as $id => $item ) {
947
  $item = $this->get_slider_image( $id, $data, $post_id );
948
  break;
949
  case 'video' :
950
+ $item = '';
951
  break;
952
  case 'html' :
953
+ $item = '';
954
  break;
955
  }
956
 
1050
  <div class="media-sidebar">
1051
  <div class="soliloquy-meta-sidebar">
1052
  <h3><?php _e( 'Helpful Tips', 'soliloquy' ); ?></h3>
1053
+ <strong><?php _e( 'Images and SEO', 'soliloquy' ); ?></strong>
1054
+ <p><?php _e( 'Images are a small but important part of your overall SEO strategy. In order to get the most SEO benefits from your slider, it is recommended that you fill out each applicable field with SEO friendly information about the image.', 'soliloquy' ); ?></p>
1055
  <strong><?php _e( 'Image Hyperlinks', 'soliloquy' ); ?></strong>
1056
+ <p><?php _e( 'The image hyperlink field is used when you click on an image in the slider.', 'soliloquy' ); ?></p>
1057
+ <strong><?php _e( 'Image Captions', 'soliloquy' ); ?></strong>
1058
+ <p><?php _e( 'Captions can take any type of HTML content, such as <code>form</code>, <code>iframe</code> and <code>h1</code> tags.', 'soliloquy' ); ?></p>
1059
  <strong><?php _e( 'Saving and Exiting', 'soliloquy' ); ?></strong>
1060
  <p class="no-margin"><?php _e( 'Click on the button below to save your image metadata. You can close this window by either clicking on the "X" above or hitting the <code>esc</code> key on your keyboard.', 'soliloquy' ); ?></p>
1061
  </div><!-- end .soliloquy-meta-sidebar -->
1120
  // Loop through the images and crop them.
1121
  if ( $images ) {
1122
  // Increase the time limit to account for large image sets and suspend cache invalidations.
1123
+ set_time_limit( Soliloquy_Common_Lite::get_instance()->get_max_execution_time() );
1124
  wp_suspend_cache_invalidation( true );
1125
 
1126
  foreach ( $images as $id => $item ) {
includes/global/common.php CHANGED
@@ -406,6 +406,20 @@ class Soliloquy_Common_Lite {
406
 
407
  }
408
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
409
  /**
410
  * Returns the singleton instance of the class.
411
  *
406
 
407
  }
408
 
409
+ /**
410
+ * Helper method to return the max execution time for scripts.
411
+ *
412
+ * @since 1.0.0
413
+ *
414
+ * @param int $time The max execution time available for PHP scripts.
415
+ */
416
+ public function get_max_execution_time() {
417
+
418
+ $time = ini_get( 'max_execution_time' );
419
+ return ! $time || empty( $time ) ? (int) 0 : $time;
420
+
421
+ }
422
+
423
  /**
424
  * Returns the singleton instance of the class.
425
  *
includes/global/shortcode.php CHANGED
@@ -260,10 +260,10 @@ class Soliloquy_Shortcode_Lite {
260
  $slide = $this->get_image_slide( $id, $item, $data, $i );
261
  break;
262
  case 'video' :
263
- $slide = $this->get_video_slide( $id, $item, $data, $i );
264
  break;
265
  case 'html' :
266
- $slide = $this->get_html_slide( $id, $item, $data, $i );
267
  break;
268
  }
269
 
260
  $slide = $this->get_image_slide( $id, $item, $data, $i );
261
  break;
262
  case 'video' :
263
+ $slide = '';
264
  break;
265
  case 'html' :
266
+ $slide = '';
267
  break;
268
  }
269
 
readme.txt CHANGED
@@ -1,6 +1,6 @@
1
  === Responsive WordPress Slider - Soliloquy Lite ===
2
  Contributors: griffinjt
3
- Tags: wordpress slider, slider, wordpress slider plugin, slider plugin, responsive, responsive slider, image slider, image slider plugin, responsive slider plugin, responsive image slider, responsive image slider plugin, custom post types, slideshow, responsive slideshow, slideshow plugin, responsive slideshow plugin, rotator, image rotator, responsive rotator, jquery slider, javascript slider, jquery rotator, javascript rotator, picture slider, photo slider, photo rotator, shortcode, template tag, wordpress slideshow, photo slider, wordpress responsive slider, wordpress picture slider, responsive picture slider, wordpress image slider, wordpress gallery, image gallery, photo gallery, wordpress photo gallery
4
  Requires at least: 3.5.1
5
  Tested up to: 3.9
6
  Stable tag: trunk
@@ -10,11 +10,11 @@ The best responsive WordPress slider plugin. Made lite and free.
10
 
11
  == Description ==
12
 
13
- Soliloquy, the [best responsive WordPress slider plugin](http://soliloquywp.com/), is now available in its Lite form! Soliloquy is audited by Mark Jaquith, lead developer of WordPress, for security and features the **easiest to use and most performance optimized code for a WordPress slider plugin.** By utilizing custom post types, Soliloquy allows you to create an infinite number of responsive WordPress sliders with an infinite number of images in each slider with a few clicks of the mouse. **It's hard to go wrong with this WordPress slider!**
14
 
15
- *Need more convincing? [Check out the top ten reasons why Soliloquy is the **best responsive WordPress slider plugin** on the market!](http://soliloquywp.com/wordpress-slider-plugin/)
16
 
17
- **Note: This is the lite version of the Soliloquy WordPress slider. Want even more WordPress slider features, including HTML/video slides, complete embedded video support for YouTube and Vimeo, widgets, and access to exclusive Addons (such as full lightbox support and image filters)? [Click here to purchase the best responsive WordPress slider plugin now!](http://soliloquywp.com/).**
18
 
19
  = Features =
20
 
@@ -29,7 +29,7 @@ Soliloquy, the [best responsive WordPress slider plugin](http://soliloquywp.com/
29
 
30
  Beyond the features mentioned above, there are plenty of other **WordPress slider features** inside of the plugin. You gain the benefit of an intuitive user interface that makes slider management easy, simple to understand slider options, and a plethora of hooks and filters to **manipulate the slider output.**
31
 
32
- _It's hard to go wrong by choosing [Soliloquy](http://soliloquywp.com/) as your all-in-one **WordPress slider plugin** solution!_
33
 
34
  = Why Choose Soliloquy? =
35
 
@@ -37,20 +37,20 @@ Soliloquy is the **best choice for a WordPress slider plugin** because it is fas
37
 
38
  [youtube http://www.youtube.com/watch?v=zw_t7RXYzTE]
39
 
40
- **Note: This WordPress slider plugin is provided as-is. Only critical bug fixes, future compatibility with WordPress versions and routine maintenance will be addressed in plugin updates. If you want support or access to more slider features, [consider purchasing a support license](http://soliloquywp.com/).**
41
 
42
  == Installation ==
43
 
44
  1. Install Soliloquy Lite either via the WordPress.org plugin repository, or by uploading the files to your server.
45
  2. Activate Soliloquy Lite.
46
  3. Navigate to the Soliloquy tab at the bottom of your admin menu and click "Add New" to begin creating your new WordPress slider.
47
- 4. Salivate for new features and [purchase the full version of Soliloquy](http://soliloquywp.com/)!
48
 
49
  == Frequently Asked Questions ==
50
 
51
  = I'd like access to more features. How can I get them? =
52
 
53
- You can get access to more features, Addons and support by [visiting the Soliloquy website and purchasing a support license](http://soliloquywp.com/). Purchasing a support license gets you access to the full version of Soliloquy, automatic updates and support. Purchasing a developer support license gets you all the aforementioned plus exclusive access to Soliloquy Addons.
54
 
55
  == Screenshots ==
56
 
@@ -63,7 +63,7 @@ You can get access to more features, Addons and support by [visiting the Soliloq
63
 
64
  == Notes ==
65
 
66
- Soliloquy is absolutely, positively the [best responsive WordPress slider plugin](http://soliloquywp.com/) on the market. It is fast, flexible and solves the problem of responsive sliders in a flash.
67
 
68
  In v2.0 of Soliloquy Lite, it includes a big plugin architecture change. You need to make sure you click on the link and follow the instructions on the screen when updating. There will be an upgrade notice - make sure you click this and upgrade your sliders after updating to v2!
69
 
@@ -71,19 +71,24 @@ In v2.0 of Soliloquy Lite, it includes a big plugin architecture change. You nee
71
 
72
  Soliloquy has many Addons that extend its default functionality to make it do incredible things.
73
 
74
- * (Soliloquy Themes Addon)[http://soliloquywp.com/addons/themes/?utm_source=orgrepo&utm_medium=link&utm_campaign=Soliloquy%2BLite] - beautiful themes for your WordPress slider.
75
- * (Soliloquy Preview Addon)[http://soliloquywp.com/addons/preview/?utm_source=orgrepo&utm_medium=link&utm_campaign=Soliloquy%2BLite] - get instant previews of your slider straight inside the editing area of the slider.
76
- * (Soliloquy Lightbox Addon)[http://soliloquywp.com/addons/lightbox/?utm_source=orgrepo&utm_medium=link&utm_campaign=Soliloquy%2BLite] - use powerful lightbox features to enhance the presentation and interaction with your WordPress slider.
77
- * (Soliloquy Instagram Addon)[http://soliloquywp.com/addons/instagram/?utm_source=orgrepo&utm_medium=link&utm_campaign=Soliloquy%2BLite] - make awesome responsive WordPress sliders from your Instagram photo stream.
78
- * (Soliloquy Crop Addon)[http://soliloquywp.com/addons/crop/?utm_source=orgrepo&utm_medium=link&utm_campaign=Soliloquy%2BLite] - instantly and dynamically crop images to the size you specify on the fly. No more resizing in Photoshop!
79
- * (Soliloquy Featured Content Addon)[http://soliloquywp.com/addons/featured-content/?utm_source=orgrepo&utm_medium=link&utm_campaign=Soliloquy%2BLite] - make a gorgeous WordPress slider from you posts, pages and other custom post types.
80
- * (Soliloquy Pinterest Addon)[http://soliloquywp.com/addons/pinterest/?utm_source=orgrepo&utm_medium=link&utm_campaign=Soliloquy%2BLite] - easily add a "Pin It" button to images in your slider.
81
- * (Soliloquy Thumbnails Addon)[http://soliloquywp.com/addons/thumbnails/?utm_source=orgrepo&utm_medium=link&utm_campaign=Soliloquy%2BLite] - give your slider easy-to-use and responsive thumbnails.
82
- * (Soliloquy Filters Addon)[http://soliloquywp.com/addons/filters/?utm_source=orgrepo&utm_medium=link&utm_campaign=Soliloquy%2BLite] - add 25+ awesome filters to images in your WordPress slider.
83
- * (Soliloquy Carousel Addon)[http://soliloquywp.com/addons/carousel/?utm_source=orgrepo&utm_medium=link&utm_campaign=Soliloquy%2BLite] - transform your default WordPress slider into a responsive and easy-to-use carousel slider.
84
 
85
  == Changelog ==
86
 
 
 
 
 
 
 
87
  = 2.1.2 =
88
  * Fixed a couple image cropping bugs.
89
  * Prevent upgrade option from showing for new users of Soliloquy.
1
  === Responsive WordPress Slider - Soliloquy Lite ===
2
  Contributors: griffinjt
3
+ Tags: wordpress slider, slider, wordpress slider plugin, slider plugin, responsive, responsive slider, image slider, image slider plugin, responsive slider plugin, responsive image slider, responsive image slider plugin, custom post types, slideshow, responsive slideshow, slideshow plugin, responsive slideshow plugin, rotator, image rotator, responsive rotator, jquery slider, javascript slider, jquery rotator, javascript rotator, picture slider, photo slider, photo rotator, shortcode, template tag, wordpress slideshow, photo slider, wordpress responsive slider, wordpress picture slider, responsive picture slider, wordpress image slider, wordpress gallery, image gallery, photo gallery, wordpress photo gallery, wordpress picture gallery, wordpress picture slider, wp slider, best wordpress slider, best slider, best slider wordpress, best responsive slider, best responsive wordpress slider plugin
4
  Requires at least: 3.5.1
5
  Tested up to: 3.9
6
  Stable tag: trunk
10
 
11
  == Description ==
12
 
13
+ Soliloquy, the <a href="http://soliloquywp.com/" rel="friend" title="Soliloquy - The Best Responsive WordPress Slider Plugin">best responsive WordPress slider plugin</a>, is now available in its Lite form! Soliloquy is audited by Mark Jaquith, lead developer of WordPress, for security and features the **easiest to use and most performance optimized code for a WordPress slider plugin.** By utilizing custom post types, Soliloquy allows you to create an infinite number of responsive WordPress sliders with an infinite number of images in each slider with a few clicks of the mouse. **It's hard to go wrong with this WordPress slider!**
14
 
15
+ *Need more convincing? <a href="http://soliloquywp.com/wordpress-slider-plugin/" rel="friend" title="Check out the top ten reasons why Soliloquy is the best responsive WordPress slider plugin on the market!">Check out the top ten reasons why Soliloquy is the **best responsive WordPress slider plugin** on the market!</a>
16
 
17
+ **Note: This is the lite version of the Soliloquy WordPress slider. Want even more WordPress slider features, including HTML/video slides, complete embedded video support for YouTube and Vimeo, widgets, and access to exclusive Addons (such as full lightbox support and image filters)? <a href="http://soliloquywp.com/pricing/" rel="friend" title="Click here to purchase the best responsive WordPress slider plugin now!">Click here to purchase the best responsive WordPress slider plugin now!</a>.**
18
 
19
  = Features =
20
 
29
 
30
  Beyond the features mentioned above, there are plenty of other **WordPress slider features** inside of the plugin. You gain the benefit of an intuitive user interface that makes slider management easy, simple to understand slider options, and a plethora of hooks and filters to **manipulate the slider output.**
31
 
32
+ _It's hard to go wrong by choosing <a href="http://soliloquywp.com/" rel="friend" title="Soliloquy">Soliloquy</a> as your all-in-one **WordPress slider plugin** solution!_
33
 
34
  = Why Choose Soliloquy? =
35
 
37
 
38
  [youtube http://www.youtube.com/watch?v=zw_t7RXYzTE]
39
 
40
+ **Note: This WordPress slider plugin is provided as-is. Only critical bug fixes, future compatibility with WordPress versions and routine maintenance will be addressed in plugin updates. If you want support or access to more slider features, <a href="http://soliloquywp.com/" rel="friend" title="Click here to purchase a support license for Soliloquy">consider purchasing a support license</a>.**
41
 
42
  == Installation ==
43
 
44
  1. Install Soliloquy Lite either via the WordPress.org plugin repository, or by uploading the files to your server.
45
  2. Activate Soliloquy Lite.
46
  3. Navigate to the Soliloquy tab at the bottom of your admin menu and click "Add New" to begin creating your new WordPress slider.
47
+ 4. Salivate for new features and <a href="http://soliloquywp.com/" rel="friend" title="Click here to learn more about Soliloquy!">purchase the full version of Soliloquy</a>!
48
 
49
  == Frequently Asked Questions ==
50
 
51
  = I'd like access to more features. How can I get them? =
52
 
53
+ You can get access to more features, Addons and support by <a href="http://soliloquywp.com/" rel="friend" title="Soliloquy Support License">visiting the Soliloquy website and purchasing a support license</a>. Purchasing a support license gets you access to the full version of Soliloquy, automatic updates and support. Purchasing a developer support license gets you all the aforementioned plus exclusive access to Soliloquy Addons.
54
 
55
  == Screenshots ==
56
 
63
 
64
  == Notes ==
65
 
66
+ Soliloquy is absolutely, positively the <a href="http://soliloquywp.com/" rel="friend" title="Soliloquy">best responsive WordPress slider plugin</a> on the market. It is fast, flexible and solves the problem of responsive sliders in a flash.
67
 
68
  In v2.0 of Soliloquy Lite, it includes a big plugin architecture change. You need to make sure you click on the link and follow the instructions on the screen when updating. There will be an upgrade notice - make sure you click this and upgrade your sliders after updating to v2!
69
 
71
 
72
  Soliloquy has many Addons that extend its default functionality to make it do incredible things.
73
 
74
+ * <a href="http://soliloquywp.com/addons/themes/" rel="friend" title="Soliloquy Themes Addon">Soliloquy Themes Addon</a> - beautiful themes for your WordPress slider.
75
+ * <a href="http://soliloquywp.com/addons/lightbox/" rel="friend" title="Soliloquy Lightbox Addon">Soliloquy Lightbox Addon</a> - use powerful lightbox features to enhance the presentation and interaction with your WordPress slider.
76
+ * <a href="http://soliloquywp.com/addons/instagram/" rel="friend" title="Soliloquy Instagram Addon">Soliloquy Instagram Addon</a> - make awesome responsive WordPress sliders from your Instagram photo stream.
77
+ * <a href="http://soliloquywp.com/addons/crop/" rel="friend" title="Soliloquy Crop Addon">Soliloquy Crop Addon</a> - instantly and dynamically crop images to the size you specify on the fly. No more resizing in Photoshop!
78
+ * <a href="http://soliloquywp.com/addons/featured-content/" rel="friend" title="Soliloquy Featured Content Addon">Soliloquy Featured Content Addon</a> - make a gorgeous WordPress slider from you posts, pages and other custom post types.
79
+ * <a href="http://soliloquywp.com/addons/pinterest/" rel="friend" title="Soliloquy Pinterest Addon">Soliloquy Pinterest Addon</a> - easily add a "Pin It" button to images in your slider.
80
+ * <a href="http://soliloquywp.com/addons/thumbnails/" rel="friend" title="Soliloquy Thumbnails Addon">Soliloquy Thumbnails Addon</a> - give your slider easy-to-use and responsive thumbnails.
81
+ * <a href="http://soliloquywp.com/addons/filters/" rel="friend" title="Soliloquy Filters Addon">Soliloquy Filters Addon</a> - add 25+ awesome filters to images in your WordPress slider.
82
+ * <a href="http://soliloquywp.com/addons/carousel/" rel="friend" title="Soliloquy Carousel Addon">Soliloquy Carousel Addon</a> - transform your default WordPress slider into a responsive and easy-to-use carousel slider.
 
83
 
84
  == Changelog ==
85
 
86
+ = 2.1.3 =
87
+ * Fixed bug with link dialog modal showing below the edit metadata modal.
88
+ * Fixed issue with max_execution_time on some hosts when cropping images.
89
+ * Fixed Retina display bug with Classic theme.
90
+ * Fixed contextual language bug in edit metadata modal.
91
+
92
  = 2.1.2 =
93
  * Fixed a couple image cropping bugs.
94
  * Prevent upgrade option from showing for new users of Soliloquy.
soliloquy-lite.php CHANGED
@@ -5,7 +5,7 @@
5
  * Description: Soliloquy is best responsive WordPress slider plugin. This is the lite version.
6
  * Author: Thomas Griffin
7
  * Author URI: http://thomasgriffinmedia.com
8
- * Version: 2.1.2
9
  * Text Domain: soliloquy
10
  * Domain Path: languages
11
  *
@@ -54,7 +54,7 @@ class Soliloquy_Lite {
54
  *
55
  * @var string
56
  */
57
- public $version = '2.1.2';
58
 
59
  /**
60
  * The name of the plugin.
5
  * Description: Soliloquy is best responsive WordPress slider plugin. This is the lite version.
6
  * Author: Thomas Griffin
7
  * Author URI: http://thomasgriffinmedia.com
8
+ * Version: 2.1.3
9
  * Text Domain: soliloquy
10
  * Domain Path: languages
11
  *
54
  *
55
  * @var string
56
  */
57
+ public $version = '2.1.3';
58
 
59
  /**
60
  * The name of the plugin.
themes/classic/style.css CHANGED
@@ -12,7 +12,7 @@
12
 
13
  .soliloquy-theme-classic .soliloquy-controls-direction {
14
  display: none;
15
- height: 0;
16
  }
17
 
18
  .soliloquy-theme-classic:hover .soliloquy-controls-direction,
@@ -97,23 +97,25 @@ only screen and ( min-resolution: 2dppx) {
97
 
98
  .soliloquy-theme-classic .soliloquy-prev {
99
  background: url('images/slider-arrows-horizontal@2x.png') no-repeat scroll 0 0;
100
- background-size: 100%;
101
  }
102
 
103
  .soliloquy-theme-classic .soliloquy-next {
104
  background: url('images/slider-arrows-horizontal@2x.png') no-repeat scroll 0 -20px;
105
- background-size: 100%;
106
  }
107
 
108
  .soliloquy-theme-classic .soliloquy-pager-link {
109
  background: url('images/slider-dots@2x.png') no-repeat scroll 0 0;
110
- background-size: 100%;
111
- height: 15px;
112
  }
113
 
114
  .soliloquy-theme-classic .soliloquy-pager-link:hover,
115
  .soliloquy-theme-classic .soliloquy-pager-link.active {
116
- background-position: 0 -15px;
 
 
117
  }
118
 
119
  }
12
 
13
  .soliloquy-theme-classic .soliloquy-controls-direction {
14
  display: none;
15
+ height: 0;
16
  }
17
 
18
  .soliloquy-theme-classic:hover .soliloquy-controls-direction,
97
 
98
  .soliloquy-theme-classic .soliloquy-prev {
99
  background: url('images/slider-arrows-horizontal@2x.png') no-repeat scroll 0 0;
100
+ background-size: 100%;
101
  }
102
 
103
  .soliloquy-theme-classic .soliloquy-next {
104
  background: url('images/slider-arrows-horizontal@2x.png') no-repeat scroll 0 -20px;
105
+ background-size: 100%;
106
  }
107
 
108
  .soliloquy-theme-classic .soliloquy-pager-link {
109
  background: url('images/slider-dots@2x.png') no-repeat scroll 0 0;
110
+ background-size: 100%;
111
+ height: 15px;
112
  }
113
 
114
  .soliloquy-theme-classic .soliloquy-pager-link:hover,
115
  .soliloquy-theme-classic .soliloquy-pager-link.active {
116
+ background: url('images/slider-dots@2x.png') no-repeat scroll 0 -15px;
117
+ background-size: 100%;
118
+ height: 15px;
119
  }
120
 
121
  }