kopia lustrzana https://github.com/c9/core
Merge pull request +10779 from c9/fix/tree-contextmenu
do not break tree menu if c9.readonly is undefinedpull/223/head
commit
3e21e195df
|
@ -341,15 +341,6 @@ define(function(require, exports, module) {
|
||||||
}
|
}
|
||||||
}), 300, plugin);
|
}), 300, plugin);
|
||||||
|
|
||||||
mnuFilesSettings.on("prop.visible", function(e) {
|
|
||||||
|
|
||||||
}, plugin);
|
|
||||||
|
|
||||||
// todo
|
|
||||||
winFilesViewer.on("prop.visible", function(e) {
|
|
||||||
|
|
||||||
}, plugin);
|
|
||||||
|
|
||||||
// After an item in the tree has been clicked on, this saves that
|
// After an item in the tree has been clicked on, this saves that
|
||||||
// selection in the settings model
|
// selection in the settings model
|
||||||
// @todo optimize this with a timeout if needed
|
// @todo optimize this with a timeout if needed
|
||||||
|
@ -612,7 +603,7 @@ define(function(require, exports, module) {
|
||||||
if (!hasNetwork && !item.enableOffline) {
|
if (!hasNetwork && !item.enableOffline) {
|
||||||
disabled = true;
|
disabled = true;
|
||||||
}
|
}
|
||||||
else if (item.write == c9.readonly) {
|
else if (item.write && c9.readonly) {
|
||||||
disabled = true;
|
disabled = true;
|
||||||
}
|
}
|
||||||
else if (match == "clipboard") {
|
else if (match == "clipboard") {
|
||||||
|
|
Ładowanie…
Reference in New Issue