From: Paul Shahid Date: Wed, 26 Mar 2014 00:38:21 +0000 (-0400) Subject: Forgot to remove some console.logs from when I was learnin the codebase X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=26bb7bc0f874293c1a2eb2d665c2192cc5143123;p=KiwiIRC.git Forgot to remove some console.logs from when I was learnin the codebase --- 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); },