added delete
This commit is contained in:
parent
9185f75110
commit
0f1f6c1e8f
2 changed files with 9 additions and 2 deletions
|
@ -325,6 +325,12 @@ document.addEventListener(
|
|||
document.execCommand("paste");
|
||||
},
|
||||
},
|
||||
delete: {
|
||||
name: app.getLz("action.delete"),
|
||||
action: function () {
|
||||
document.execCommand("delete");
|
||||
},
|
||||
},
|
||||
selectAll: {
|
||||
name: app.getLz("action.selectAll"),
|
||||
action: function () {
|
||||
|
@ -332,8 +338,8 @@ document.addEventListener(
|
|||
},
|
||||
},
|
||||
},
|
||||
}
|
||||
app.showMenuPanel(menuPanel, e)
|
||||
};
|
||||
app.showMenuPanel(menuPanel, e);
|
||||
}
|
||||
},
|
||||
false
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue