File tree Expand file tree Collapse file tree 4 files changed +10
-4
lines changed
Expand file tree Collapse file tree 4 files changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -67,4 +67,3 @@ async function register(config) {
6767
6868 listenSW ( sw , 'updatefound' , onUpdateFound ( config ) ) ;
6969}
70-
Original file line number Diff line number Diff line change @@ -116,6 +116,7 @@ module.exports.initKeysPanel = () => {
116116
117117 const { target} = event ;
118118 const { id} = target ;
119+
119120 const operation = ( name ) => {
120121 const { Operation} = CloudCmd ;
121122
Original file line number Diff line number Diff line change @@ -23,4 +23,3 @@ async function loadMenu() {
2323
2424 return supermenu ;
2525}
26-
Original file line number Diff line number Diff line change @@ -46,6 +46,7 @@ module.exports.init = async () => {
4646 } ) ;
4747
4848 const { createCloudMenu} = await import ( './cloudmenu.mjs' ) ;
49+
4950 MenuContext = await createCloudMenu ( fm , options , menuData ) ;
5051 MenuContextFile = await createCloudMenu ( fm , optionsFile , menuDataFile ) ;
5152
@@ -205,8 +206,15 @@ function isPath(x, y) {
205206function beforeShow ( callback , params ) {
206207 Key . unsetBind ( ) ;
207208
208- const { name, position = { x : params . x , y : params . y } } = params ;
209+ const {
210+ name,
211+ position = {
212+ x : params . x ,
213+ y : params . y ,
214+ } ,
215+ } = params ;
209216 const { x, y} = position ;
217+
210218 const el = DOM . getCurrentByPosition ( {
211219 x,
212220 y,
@@ -343,4 +351,3 @@ function listener(event) {
343351 event . preventDefault ( ) ;
344352 }
345353}
346-
You can’t perform that action at this time.
0 commit comments