Tabview sorting now enabled
authorDarren <darren@darrenwhitlen.com>
Mon, 7 Nov 2011 14:38:48 +0000 (14:38 +0000)
committerDarren <darren@darrenwhitlen.com>
Mon, 7 Nov 2011 14:38:48 +0000 (14:38 +0000)
client/js/front.js

index 4d15bf995706bc4b689a7b72d5f2a212ca9af043..41074a030c40da3a515fd4f63f201f3c1ab90796 100644 (file)
@@ -466,9 +466,8 @@ kiwi.front = {
     sortWindowList: function () {
         var win_list = $('#kiwi .windowlist ul');
         var listitems = win_list.children('li').get();
-        console.log(Tabview.getServerTab().tab);
+        
         listitems.sort(function (a, b) {
-            console.log(a);
             if (a == Tabview.getServerTab().tab[0]) {
                 return -1;
             }
@@ -1306,7 +1305,7 @@ var Tabview = function (v_name) {
         // Create the window
         $('#kiwi .windows .scroller').append('<div id="' + tmp_divname + '" class="messages"></div>');
         
-        // Create the userlist
+        // Create the window tab
         tmp_tab = $('<li id="' + tmp_tabname + '"><span></span></li>');
         $('span', tmp_tab).text(v_name);
         $('#kiwi .windowlist ul').append(tmp_tab);
@@ -1316,6 +1315,8 @@ var Tabview = function (v_name) {
                 tab.show();
             }
         });
+
+        kiwi.front.sortWindowList();
     }
 
     kiwi.front.tabviews[v_name.toLowerCase()] = this;