Skip to content

Commit

Permalink
Merge [release] in master
Browse files Browse the repository at this point in the history
  • Loading branch information
alecszaharia committed Sep 24, 2019
2 parents 95a6edb + c76e49c commit 65daebb
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 7 deletions.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Contributors: themefuse<br>
Requires at least: 4.5<br>
Tested up to: 5.2.3<br>
Requires PHP: 5.6<br>
Stable tag: 1.0.88<br>
Stable tag: 1.0.89<br>
License: GPLv3<br>
License URI: https://www.gnu.org/licenses/gpl-3.0.html

Expand Down Expand Up @@ -118,6 +118,9 @@ $bodyHtml = apply_filters( 'brizy_content', $html->get_body(), Brizy_Editor_Proj

## Changelog

### 1.0.89 - 2019-09-24 ###
* Fixed: Disabled Block Background Attachment Fixed for Responsive

### 1.0.88 - 2019-09-24 ###
* Fixed: Image Shadow Border Radius Fix in Preview

Expand Down
4 changes: 2 additions & 2 deletions brizy.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* Plugin URI: https://brizy.io/
* Author: Brizy.io
* Author URI: https://brizy.io/
* Version: 1.0.88
* Version: 1.0.89
* Text Domain: brizy
* License: GPLv3
* Domain Path: /languages
Expand All @@ -19,7 +19,7 @@

define( 'BRIZY_DEVELOPMENT', false );
define( 'BRIZY_LOG', false );
define( 'BRIZY_VERSION', '1.0.88' );
define( 'BRIZY_VERSION', '1.0.89' );
define( 'BRIZY_EDITOR_VERSION', '108' );
define( 'BRIZY_FILE', __FILE__ );
define( 'BRIZY_PLUGIN_BASE', plugin_basename( BRIZY_FILE ) );
Expand Down
2 changes: 1 addition & 1 deletion public/editor-build/editor/js/editor.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions public/editor-src/editor/js/utils/cssStyle/cssStyleBgImage.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@ export function cssStyleBgImagePosition({ v, device, state }) {
: `background-position:${positionX} ${positionY};`;
}

export function cssStyleBgImageAttachment({ v, props }) {
export function cssStyleBgImageAttachment({ v, device, state, props }) {
const { isSlider } = props.meta.section;
const bgAttachment = styleBgAttachment({ v, isSlider });

return bgAttachment === undefined
return device !== "desktop" || bgAttachment === undefined
? ""
: `background-attachment:${bgAttachment};`;
}
5 changes: 4 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Tags: brizy, page builder, editor, visual editor, unyson, wysiwyg, landing page,
Requires at least: 4.5
Tested up to: 5.2.3
Requires PHP: 5.6
Stable tag: 1.0.88
Stable tag: 1.0.89
License: GPLv3
License URI: https://www.gnu.org/licenses/gpl-3.0.html

Expand Down Expand Up @@ -139,6 +139,9 @@ The progress you're making while building your page is always backed up in the c

== Changelog ==

= 1.0.89 - 2019-09-24 =
* Fixed: Disabled Block Background Attachment Fixed for Responsive

= 1.0.88 - 2019-09-24 =
* Fixed: Image Shadow Border Radius Fix in Preview

Expand Down

0 comments on commit 65daebb

Please sign in to comment.