pull/9/merge
Ruben Daniels 2015-02-15 02:10:57 +00:00
rodzic 8241750a76
commit f55caee595
2 zmienionych plików z 12 dodań i 0 usunięć

Wyświetl plik

@ -195,6 +195,10 @@ define(function(require, module, exports) {
}, force);
}
function show() {
return plugin.queue(function(){}, true);
}
function hide(){
dialog && dialog.hide();
}
@ -509,6 +513,13 @@ define(function(require, module, exports) {
*/
queue: queue,
/**
* Show the dialog. When using queing overwrite this method
* with your own show function.
* @fires show
*/
show: show,
/**
* Hide the dialog.
* @fires hide

Wyświetl plik

@ -1852,6 +1852,7 @@ define(function(require, module, exports) {
* @param {Pane} [options.pane] The pane to attach the new tab to
* @param {String} [options.editorType] The type of the editor for this tab
* @param {Boolean} [options.active=false] Whether this tab is set as active
* @param {Boolean} [options.focus=false] Whether this tab is set as focussed
* @param {Boolean} [options.forceNew=false] Always create a tab
* @param {Boolean} [options.demandExisting=false] Whether to try opening an
* existing tab even for tabs without a path.