Version Description
- Fixed - Fixed - Tabs defaulting to zero on mobile width when saving changes.
Download this release
Release Info
Developer | livemesh |
Plugin | Livemesh SiteOrigin Widgets |
Version | 1.4.5 |
Comparing to | |
See all releases |
Code changes from version 1.4.4 to 1.4.5
admin/views/documentation.php
CHANGED
@@ -1249,6 +1249,12 @@ else {
|
|
1249 |
<!-- Updates panel -->
|
1250 |
<div id="updates-panel" class="panel-left">
|
1251 |
|
|
|
|
|
|
|
|
|
|
|
|
|
1252 |
<h4>1.4.4</h4>
|
1253 |
|
1254 |
<ul>
|
1249 |
<!-- Updates panel -->
|
1250 |
<div id="updates-panel" class="panel-left">
|
1251 |
|
1252 |
+
<h4>1.4.5</h4>
|
1253 |
+
|
1254 |
+
<ul>
|
1255 |
+
<li>Fixed - Tabs defaulting to zero on mobile width when saving changes.</li>
|
1256 |
+
</ul>
|
1257 |
+
|
1258 |
<h4>1.4.4</h4>
|
1259 |
|
1260 |
<ul>
|
includes/widgets/lsow-tabs-widget/lsow-tabs-widget.php
CHANGED
@@ -58,11 +58,10 @@ class LSOW_Tabs_Widget extends SiteOrigin_Widget {
|
|
58 |
),
|
59 |
|
60 |
'mobile_width' => array(
|
61 |
-
'type' => '
|
62 |
'label' => __('Mobile Resolution', 'livemesh-so-widgets'),
|
63 |
'description' => __('The resolution to treat as a mobile resolution for invoking responsive tabs.', 'livemesh-so-widgets'),
|
64 |
'default' => 767,
|
65 |
-
'sanitize' => 'intval',
|
66 |
),
|
67 |
|
68 |
'icon_type' => array(
|
@@ -163,7 +162,7 @@ class LSOW_Tabs_Widget extends SiteOrigin_Widget {
|
|
163 |
return array(
|
164 |
'style' => $instance['style'],
|
165 |
'icon_type' => $instance['icon_type'],
|
166 |
-
'mobile_width' => $instance['mobile_width'],
|
167 |
'tabs' => !empty($instance['tabs']) ? $instance['tabs'] : array()
|
168 |
);
|
169 |
}
|
58 |
),
|
59 |
|
60 |
'mobile_width' => array(
|
61 |
+
'type' => 'number',
|
62 |
'label' => __('Mobile Resolution', 'livemesh-so-widgets'),
|
63 |
'description' => __('The resolution to treat as a mobile resolution for invoking responsive tabs.', 'livemesh-so-widgets'),
|
64 |
'default' => 767,
|
|
|
65 |
),
|
66 |
|
67 |
'icon_type' => array(
|
162 |
return array(
|
163 |
'style' => $instance['style'],
|
164 |
'icon_type' => $instance['icon_type'],
|
165 |
+
'mobile_width' => intval($instance['mobile_width']),
|
166 |
'tabs' => !empty($instance['tabs']) ? $instance['tabs'] : array()
|
167 |
);
|
168 |
}
|
livemesh-so-widgets.php
CHANGED
@@ -7,7 +7,7 @@
|
|
7 |
* Author URI: http://portfoliotheme.org/
|
8 |
* License: GPL3
|
9 |
* License URI: https://www.gnu.org/licenses/gpl-3.0.txt
|
10 |
-
* Version: 1.4.
|
11 |
* Text Domain: livemesh-so-widgets
|
12 |
* Domain Path: languages
|
13 |
*
|
@@ -92,7 +92,7 @@ if (!class_exists('Livemesh_SiteOrigin_Widgets')) :
|
|
92 |
|
93 |
// Plugin version
|
94 |
if (!defined('LSOW_VERSION')) {
|
95 |
-
define('LSOW_VERSION', '1.4.
|
96 |
}
|
97 |
|
98 |
// Plugin Folder Path
|
7 |
* Author URI: http://portfoliotheme.org/
|
8 |
* License: GPL3
|
9 |
* License URI: https://www.gnu.org/licenses/gpl-3.0.txt
|
10 |
+
* Version: 1.4.5
|
11 |
* Text Domain: livemesh-so-widgets
|
12 |
* Domain Path: languages
|
13 |
*
|
92 |
|
93 |
// Plugin version
|
94 |
if (!defined('LSOW_VERSION')) {
|
95 |
+
define('LSOW_VERSION', '1.4.5');
|
96 |
}
|
97 |
|
98 |
// Plugin Folder Path
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Contributors: livemesh
|
|
5 |
Tags: widget, siteorigin, siteorigin widgets bundle, siteorigin page builder, siteorigin addons, grid, gallery, video background, portfolio, carousel, shortcode, tabs, admin, plugin, page
|
6 |
Requires at least: 4.1
|
7 |
Tested up to: 4.6
|
8 |
-
Stable Tag: 1.4.
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
@@ -112,6 +112,9 @@ Pls install and activate the <a href="https://wordpress.org/plugins/portfolio-po
|
|
112 |
|
113 |
== Changelog ==
|
114 |
|
|
|
|
|
|
|
115 |
= 1.4.4 =
|
116 |
* Fixed - Admin notices were being removed due to a missing conditional statement.
|
117 |
|
5 |
Tags: widget, siteorigin, siteorigin widgets bundle, siteorigin page builder, siteorigin addons, grid, gallery, video background, portfolio, carousel, shortcode, tabs, admin, plugin, page
|
6 |
Requires at least: 4.1
|
7 |
Tested up to: 4.6
|
8 |
+
Stable Tag: 1.4.5
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
112 |
|
113 |
== Changelog ==
|
114 |
|
115 |
+
= 1.4.5 =
|
116 |
+
* Fixed - Fixed - Tabs defaulting to zero on mobile width when saving changes.
|
117 |
+
|
118 |
= 1.4.4 =
|
119 |
* Fixed - Admin notices were being removed due to a missing conditional statement.
|
120 |
|