Lines Matching refs:mode

380 	EditorUi.prototype.mode = null;  method in EditorUi
1158 var md = (file != null) ? file.getMode() : this.mode;
2166 EditorUi.prototype.setMode = function(mode, remember) argument
2168 this.mode = mode;
2733 if (this.editor.editable && this.mode == file.getMode() &&
2738 this.addRecent({id: file.getHash(), title: file.getTitle(), mode: file.getMode()});
2962 EditorUi.prototype.saveLibrary = function(name, images, file, mode, noSpin, noReload, fn) { }; argument
3796 EditorUi.prototype.showLibraryDialog = function(name, sidebar, images, file, mode) argument
3798 var dlg = new LibraryDialog(this, name, sidebar, images, file, mode);
4582 var dlg = new CreateDialog(this, filename, mxUtils.bind(this, function(newTitle, mode) argument
4587 if (mode == '_blank')
4614 else if (mode == App.MODE_DEVICE || mode == 'download')
4620 this.pickFolder(mode, mxUtils.bind(this, function(folderId)
4624 this.exportFile(data, newTitle, mimeType, base64Encoded, mode, folderId);
4981 var dlg = new CreateDialog(this, filename, mxUtils.bind(this, function(newTitle, mode) argument
4983 if (mode == '_blank' || newTitle != null && newTitle.length > 0)
4985 …var base64 = (mode == App.MODE_DEVICE || mode == 'download' || mode == null || mode == '_blank') ?…
4986 var xhr = fn((mode == '_blank') ? null : newTitle, base64);
4990 if (mode == App.MODE_DEVICE || mode == 'download' || mode == '_blank')
4996 this.pickFolder(mode, mxUtils.bind(this, function(folderId)
5007 this.exportFile(data, newTitle, mimeType, true, mode, folderId);
5026 this.exportFile(xhr.getText(), newTitle, mimeType, true, mode, folderId);
5078 EditorUi.prototype.exportFile = function(data, filename, mimeType, base64Encoded, mode, folderId) argument
5086 EditorUi.prototype.pickFolder = function(mode, fn, enabled) argument
11571 this.mode = App.MODE_EMBED;