File tree Expand file tree Collapse file tree 2 files changed +3
-6
lines changed
app/code/Magento/PageBuilder/view/adminhtml/web Expand file tree Collapse file tree 2 files changed +3
-6
lines changed Original file line number Diff line number Diff line change 7
7
.modal-slide .modal-inner-wrap {
8
8
& .un-transform {
9
9
transform : none ;
10
+ transition : none ;
10
11
}
11
12
}
12
13
Original file line number Diff line number Diff line change @@ -82,14 +82,10 @@ define([
82
82
events . on ( 'stage:' + id + ':fullScreenModeChangeAfter' , function ( args ) {
83
83
if ( ! args . fullScreen && this . wysiwygConfigData ( ) [ 'pagebuilder_button' ] ) {
84
84
this . visiblePageBuilder ( false ) ;
85
- if ( jquery ( '#' + id ) . parents ( 'aside' ) . length ) {
86
- jquery ( '#' + id ) . parents ( '.modal-inner-wrap' ) . removeClass ( 'un-transform' ) ;
87
- }
85
+ jquery ( '.modal-inner-wrap' ) . removeClass ( 'un-transform' ) ;
88
86
} else if ( args . fullScreen && this . wysiwygConfigData ( ) [ 'pagebuilder_button' ] ) {
89
87
this . visiblePageBuilder ( true ) ;
90
- if ( jquery ( '#' + id ) . parents ( 'aside' ) . length ) {
91
- jquery ( '#' + id ) . parents ( '.modal-inner-wrap' ) . addClass ( 'un-transform' ) ;
92
- }
88
+ jquery ( '.modal-inner-wrap' ) . addClass ( 'un-transform' ) ;
93
89
}
94
90
} . bind ( this ) ) ;
95
91
}
You can’t perform that action at this time.
0 commit comments