File tree 2 files changed +22
-2
lines changed
assets/js/campaign-editors/block
2 files changed +22
-2
lines changed Original file line number Diff line number Diff line change @@ -61,14 +61,22 @@ export default class Layout {
61
61
}
62
62
} )
63
63
64
+ // NOTE: This variable keeps track of whether
65
+ // we've manually opened or closed the toolbar.
66
+ // This is necessary because the API doesn't expose
67
+ // the toolbar state
68
+ let maybeOpen = false
69
+
64
70
editorPlace . addEventListener ( "mouseenter" , ( ) => {
65
- editor . toolbar . open ( )
71
+ if ( ! maybeOpen ) editor . toolbar . open ( )
72
+ maybeOpen = true
66
73
} )
67
74
68
75
editorPlace . addEventListener ( "mouseleave" , ( ) => {
69
76
editor . toolbar . close ( )
77
+ maybeOpen = false
70
78
} )
71
-
79
+
72
80
editorPlace . addEventListener ( "paste" , e => {
73
81
e . preventDefault ( )
74
82
e . stopPropagation ( )
Original file line number Diff line number Diff line change @@ -86,8 +86,20 @@ export default class BlockEditor {
86
86
} )
87
87
} )
88
88
89
+ // NOTE: This variable keeps track of whether
90
+ // we've manually opened or closed the toolbar.
91
+ // This is necessary because the API doesn't expose
92
+ // the toolbar state
93
+ let maybeOpen = false
94
+
89
95
place . addEventListener ( "mouseleave" , ( ) => {
90
96
editor . toolbar . close ( )
97
+ maybeOpen = false
98
+ } )
99
+
100
+ place . addEventListener ( "mouseenter" , ( ) => {
101
+ if ( ! maybeOpen ) editor . toolbar . open ( )
102
+ maybeOpen = true
91
103
} )
92
104
}
93
105
}
You can’t perform that action at this time.
0 commit comments