From 26bb7bc0f874293c1a2eb2d665c2192cc5143123 Mon Sep 17 00:00:00 2001 From: Paul Shahid Date: Tue, 25 Mar 2014 20:38:21 -0400 Subject: [PATCH] Forgot to remove some console.logs from when I was learnin the codebase --- client/src/views/tabs.js | 6 ------ 1 file changed, 6 deletions(-) diff --git a/client/src/views/tabs.js b/client/src/views/tabs.js index 7e63fdc..25f5cc6 100644 --- a/client/src/views/tabs.js +++ b/client/src/views/tabs.js @@ -83,7 +83,6 @@ _kiwi.view.Tabs = Backbone.View.extend({ panel.bind('change:name', this.updateTabTitle); //Adding a panel - console.log("adding a panel"); this.panel_access.unshift(panel.cid); _kiwi.app.view.doLayout(); @@ -124,16 +123,11 @@ _kiwi.view.Tabs = Backbone.View.extend({ } var panel_index = this.panel_access.indexOf(panel.cid); - // console.log("a panel is active"); - // console.log(panel); if (panel_index > -1) { - // console.log("The panel was already in the list, removing it."); this.panel_access.splice(panel_index, 1); } //Make this panel the most recently accessed - // console.log("Readding its CID to make it first"); - // console.log(panel.cid); this.panel_access.unshift(panel.cid); }, -- 2.25.1