Version Description
Download this release
Release Info
Developer | justinbusa |
Plugin | WordPress Page Builder – Beaver Builder |
Version | 1.4.0 |
Comparing to | |
See all releases |
Code changes from version 1.3.9 to 1.4.0
- changelog.txt +7 -0
- fl-builder.php +2 -2
- includes/updater-config.php +1 -1
- js/fl-builder.js +3 -3
changelog.txt
CHANGED
@@ -1,3 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
<h4>1.3.9</h4>
|
2 |
<p><strong>Enhancements</strong></p>
|
3 |
<ul>
|
1 |
+
<h4>1.4.0</h4>
|
2 |
+
<p><strong>Bug Fixes</strong></p>
|
3 |
+
<ul>
|
4 |
+
<li>Fixed a bug introduced in 1.3.9 with moving modules into the main layout to create a new row.</li>
|
5 |
+
<li>Fixed classname conflicts with the pricing table module that broke the builder in some cases.</li>
|
6 |
+
</ul>
|
7 |
+
|
8 |
<h4>1.3.9</h4>
|
9 |
<p><strong>Enhancements</strong></p>
|
10 |
<ul>
|
fl-builder.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: Beaver Builder Plugin (Lite Version)
|
4 |
* Plugin URI: http://www.wpbeaverbuilder.com
|
5 |
* Description: A drag and drop frontend WordPress page builder plugin that works with almost any theme!
|
6 |
-
* Version: 1.
|
7 |
* Author: The Beaver Builder Team
|
8 |
* Author URI: http://www.wpbeaverbuilder.com
|
9 |
* Copyright: (c) 2014 Beaver Builder
|
@@ -11,7 +11,7 @@
|
|
11 |
* License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
12 |
* Text Domain: fl-builder
|
13 |
*/
|
14 |
-
define('FL_BUILDER_VERSION', '1.
|
15 |
define('FL_BUILDER_DIR', plugin_dir_path(__FILE__));
|
16 |
define('FL_BUILDER_URL', plugins_url('/', __FILE__));
|
17 |
define('FL_BUILDER_LITE', true);
|
3 |
* Plugin Name: Beaver Builder Plugin (Lite Version)
|
4 |
* Plugin URI: http://www.wpbeaverbuilder.com
|
5 |
* Description: A drag and drop frontend WordPress page builder plugin that works with almost any theme!
|
6 |
+
* Version: 1.4.0
|
7 |
* Author: The Beaver Builder Team
|
8 |
* Author URI: http://www.wpbeaverbuilder.com
|
9 |
* Copyright: (c) 2014 Beaver Builder
|
11 |
* License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
12 |
* Text Domain: fl-builder
|
13 |
*/
|
14 |
+
define('FL_BUILDER_VERSION', '1.4.0');
|
15 |
define('FL_BUILDER_DIR', plugin_dir_path(__FILE__));
|
16 |
define('FL_BUILDER_URL', plugins_url('/', __FILE__));
|
17 |
define('FL_BUILDER_LITE', true);
|
includes/updater-config.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
if(class_exists('FLUpdater')) {
|
4 |
FLUpdater::add_product(array(
|
5 |
'name' => 'Beaver Builder Plugin (Lite Version)',
|
6 |
-
'version' => '1.
|
7 |
'slug' => 'bb-plugin',
|
8 |
'type' => 'plugin'
|
9 |
));
|
3 |
if(class_exists('FLUpdater')) {
|
4 |
FLUpdater::add_product(array(
|
5 |
'name' => 'Beaver Builder Plugin (Lite Version)',
|
6 |
+
'version' => '1.4.0',
|
7 |
'slug' => 'bb-plugin',
|
8 |
'type' => 'plugin'
|
9 |
));
|
js/fl-builder.js
CHANGED
@@ -1413,7 +1413,7 @@ var FLBuilder;
|
|
1413 |
title = FLBuilderStrings.newColumn;
|
1414 |
}
|
1415 |
}
|
1416 |
-
else if(parent.hasClass(
|
1417 |
if(ui.item.hasClass('fl-builder-block-row')) {
|
1418 |
title = ui.item.text();
|
1419 |
}
|
@@ -2024,7 +2024,7 @@ var FLBuilder;
|
|
2024 |
else if(ui.item.hasClass('fl-builder-block')) {
|
2025 |
|
2026 |
// A new module was dropped into a row position.
|
2027 |
-
if(parent.hasClass(
|
2028 |
parentId = 0;
|
2029 |
}
|
2030 |
// A new module was dropped into a column position.
|
@@ -2043,7 +2043,7 @@ var FLBuilder;
|
|
2043 |
ui.item.remove();
|
2044 |
}
|
2045 |
// A module was dropped into the main layout.
|
2046 |
-
else if(parent.hasClass(
|
2047 |
FLBuilder._addModuleAfterRowRender = ui.item;
|
2048 |
FLBuilder._addRow('1-col', ui.item.index());
|
2049 |
ui.item.remove();
|
1413 |
title = FLBuilderStrings.newColumn;
|
1414 |
}
|
1415 |
}
|
1416 |
+
else if(parent.hasClass('fl-builder-content')) {
|
1417 |
if(ui.item.hasClass('fl-builder-block-row')) {
|
1418 |
title = ui.item.text();
|
1419 |
}
|
2024 |
else if(ui.item.hasClass('fl-builder-block')) {
|
2025 |
|
2026 |
// A new module was dropped into a row position.
|
2027 |
+
if(parent.hasClass('fl-builder-content')) {
|
2028 |
parentId = 0;
|
2029 |
}
|
2030 |
// A new module was dropped into a column position.
|
2043 |
ui.item.remove();
|
2044 |
}
|
2045 |
// A module was dropped into the main layout.
|
2046 |
+
else if(parent.hasClass('fl-builder-content')) {
|
2047 |
FLBuilder._addModuleAfterRowRender = ui.item;
|
2048 |
FLBuilder._addRow('1-col', ui.item.index());
|
2049 |
ui.item.remove();
|