зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1137422
- Hide rename root from context menu in WebIDE. r=jryans
--HG-- extra : rebase_source : 7349a6c89d5a2fbfca4aef693b1bf3a94b8e9d01
This commit is contained in:
Родитель
7ad4a0d1dd
Коммит
73e9d3af3b
|
@ -22,6 +22,14 @@ var RenamePlugin = Class({
|
|||
});
|
||||
},
|
||||
|
||||
onContextMenuOpen: function(resource) {
|
||||
if (resource.isRoot) {
|
||||
this.contextMenuItem.setAttribute("hidden", "true");
|
||||
} else {
|
||||
this.contextMenuItem.removeAttribute("hidden");
|
||||
}
|
||||
},
|
||||
|
||||
onCommand: function(cmd) {
|
||||
if (cmd === "cmd-rename") {
|
||||
let tree = this.host.projectTree;
|
||||
|
|
Загрузка…
Ссылка в новой задаче