Example #1
0
    destroy : function(){
        menus.remove("Find/~", 10000);
        menus.remove("Find in Files...");

        commands.removeCommandByName("searchinfiles");
        this.$destroy();
    }
Example #2
0
    destroy : function(){
        commands.removeCommandByName("gotoline");

        this.nodes.each(function(item){
            item.destroy(true, true);
        });
        this.nodes = [];
    }
Example #3
0
 destroy : function(){
     commands.removeCommandByName("formatjson");
     
     this.nodes.each(function(item){
         item.destroy(true, true);
     });
     this.nodes = [];
     this.winFormat.destroy(true, true);
 }
Example #4
0
    destroy : function(){
        commands.removeCommandByName("opentreepanel");

        this.nodes.each(function(item){
            item.destroy(true, true);
        });
        this.nodes = [];

        panels.unregister(this);
    }
Example #5
0
    destroy : function(){
        menus.remove("Find/~", 10000);
        menus.remove("Find in Files...");

        commands.removeCommandByName("searchinfiles");

        this.nodes.each(function(item){
            item.destroy(true, true);
        });
        this.nodes = [];
    }
Example #6
0
    destroy : function(){
        commands.removeCommandByName("gotofile");
        winGoToFile.destroy(true, true);
        this.$destroy();

        ide.removeEventListener("init.ext/editors/editors", this.$initEditorExt);
        ide.removeEventListener("extload", this.$extLoad);
        ide.removeEventListener("closefile", this.$closeFile);
        ide.removeEventListener("newfile", this.$newFile);
        ide.removeEventListener("removefile", this.$removeFile);
        ide.removeEventListener("closepopup", this.$closepopup);
        ide.removeEventListener("beforewatcherchange", this.$beforewatcherchange);
    }
Example #7
0
    destroy: function() {
        menus.remove("File/File revisions");
        menus.remove("File/~", 1000);

        commands.removeCommandByName("revisionpanel");

        if (this.saveInterval) {
            clearInterval(this.saveInterval);
        }

        this.disableEventListeners();

        tabEditors.getPages().forEach(function(page) {
            if (page.$mdlRevisions) {
                delete page.$mdlRevisions;
            }
        }, this);

        if (this.worker) {
            this.worker.terminate();
            this.worker = null;
        }
        this.$destroy();
    }
Example #8
0
 destroy : function(){
     commands.removeCommandByName("complete");
 }
Example #9
0
 destroy: function () {
     menus.remove("Tools/Strip Whitespace");
     commands.removeCommandByName("stripws");
     this.$destroy();
 }
Example #10
0
 destroy : function(){
     commands.removeCommandByName("renameVar");
 }
Example #11
0
 this.commands.each(function(item){
     commands.removeCommandByName(item[0]);
 });
Example #12
0
 destroy : function(){
     commands.removeCommandByName("formatjson");
     this.winFormat.destroy(true, true);
     this.$destroy();
 }
Example #13
0
 destroy : function(){
     commands.removeCommandByName("opentreepanel");
     panels.unregister(this);
     this.$destroy();
 }