Bug 1137422 - Hide rename root from context menu in WebIDE. r=jryans

--HG--
extra : rebase_source : 7349a6c89d5a2fbfca4aef693b1bf3a94b8e9d01
This commit is contained in:
Abdelrhman Ahmed 2015-02-27 16:46:00 -05:00
Родитель 7ad4a0d1dd
Коммит 73e9d3af3b
1 изменённых файлов: 8 добавлений и 0 удалений

Просмотреть файл

@ -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;