Skip to content

Commit

Permalink
debug raw/list switch removed type from key in tabs, ready to tag
Browse files Browse the repository at this point in the history
  • Loading branch information
PDE3056 committed Mar 12, 2014
1 parent 4fb0678 commit 4c12101
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/webapp/app/controller/FileController.js
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ Ext.define('app.controller.FileController', {
//var tabpanel = Ext.getCmp('maincontent');
var tabpanel=this.tabpanel;
this.tabs=this.tabs||[];
var key=this.raw?"raw_":"list_";
var key='';//this.raw?"raw_":"list_";
key += path;
var me=this;
var tab = this.lazyCreate(this.tabs,key, function(key){
Expand Down Expand Up @@ -196,7 +196,7 @@ Ext.define('app.controller.FileController', {

this.tabclose(tab);//remove if bug

//this.tabs[tab.key]=null;
this.tabs[tab.key]=null;

this.open(path);//remove if bug

Expand Down

0 comments on commit 4c12101

Please sign in to comment.