JSLinting
authorJack Allnutt <m2ys4u@Gmail.com>
Fri, 18 Nov 2011 13:19:41 +0000 (13:19 +0000)
committerJack Allnutt <m2ys4u@Gmail.com>
Fri, 18 Nov 2011 13:19:41 +0000 (13:19 +0000)
client/js/front.events.js
client/js/front.js
client/js/front.ui.js
client/js/gateway.js

index bbe81c8b2a5ec9aea72e3c7cc8c1cdb860362afd..05bca870212e2736462c20a1e49de14602cbd265 100644 (file)
@@ -123,7 +123,7 @@ kiwi.front.events = {
     onTopicSetBy: function (e, data) {\r
         var when, tab = Tabview.getTab(data.channel);\r
         if (tab) {\r
-            when = new Date(data.when*1000).toLocaleString();\r
+            when = new Date(data.when * 1000).toLocaleString();\r
             tab.addMsg(null, '', 'Topic set by ' + data.nick + ' at ' + when, 'topic');\r
         }\r
     },\r
@@ -291,7 +291,7 @@ kiwi.front.events = {
         } else {\r
             msg = f(data.attempts) + ' attempt at reconnecting in ' + secs + ' second' + (((secs > 1) || (secs === 0)) ? 's' : '') + '...';\r
         }\r
-        \r
+\r
         err_box.text(msg);\r
     },\r
     /**\r
index 15b89c93f3642c53248fb828b7b566313636c79c..1e4a2e2d123f36007a46cebaad44352c4534e0ca 100644 (file)
@@ -464,20 +464,20 @@ kiwi.front = {
      *  Sort the window list
      */
     sortWindowList: function () {
-        var win_list = $('#kiwi .windowlist ul');
-        var listitems = win_list.children('li').get();
+        var win_list = $('#kiwi .windowlist ul'),
+            listitems = win_list.children('li').get();
         
         listitems.sort(function (a, b) {
-            if (a == Tabview.getServerTab().tab[0]) {
+            if (a === Tabview.getServerTab().tab[0]) {
                 return -1;
             }
-            if (b == Tabview.getServerTab().tab[0]) {
+            if (b === Tabview.getServerTab().tab[0]) {
                 return 1;
             }
-            var compA = $(a).text().toUpperCase();
-            var compB = $(b).text().toUpperCase();
+            var compA = $(a).text().toUpperCase(),
+                compB = $(b).text().toUpperCase();
             return (compA < compB) ? -1 : (compA > compB) ? 1 : 0;
-        })
+        });
 
         $.each(listitems, function(idx, itm) {
             win_list.append(itm);
@@ -1540,11 +1540,13 @@ Tabview.getTab = function (name) {
     var tab;
 
     // Make sure we actually have a name
-    if (typeof name !== 'string') return null;
+    if (typeof name !== 'string') {
+        return null;
+    }
 
     // Go through each tabview and pick out the matching one
     $.each(kiwi.front.tabviews, function (i, item) {
-        if (item.name.toLowerCase() == name.toLowerCase()) {
+        if (item.name.toLowerCase() === name.toLowerCase()) {
             tab = item;
             return false;
         }
index 37dbbf6c806f32f20250d4d61664ce82d385175a..7a44755e15bf37136172d428103b93e3ddfb39d2 100644 (file)
@@ -52,7 +52,7 @@ kiwi.front.ui = {
             var windows, meta, num, msg, data, self;\r
             windows = $('#windows');\r
 \r
-            if (navigator.appVersion.indexOf("Mac") != -1) {\r
+            if (navigator.appVersion.indexOf("Mac") !== -1) {\r
                 meta = e.ctrlKey;\r
             } else {\r
                 meta = e.altKey;\r
@@ -259,7 +259,7 @@ kiwi.front.ui = {
     preventRefresh: function () {\r
         $(document).keydown(function (e) {\r
             // meta + r || F5\r
-            if ((e.metaKey && e.which == 82) || e.which == 116) {\r
+            if ((e.metaKey && e.which === 82) || e.which === 116) {\r
                 e.preventDefault();\r
                 e.stopPropagation();\r
 \r
@@ -432,7 +432,7 @@ kiwi.front.ui = {
             s,\r
             current_s,\r
             next_s;\r
-        b.css({display: 'block', position: 'absolute', height:'100%', width:'100%'});\r
+        b.css({display: 'block', position: 'absolute', height: '100%', width: '100%'});\r
         $('#kiwi').append(b);\r
 \r
         /**\r
@@ -442,29 +442,29 @@ kiwi.front.ui = {
             var b = 3, ret = {};\r
             ret.top = el.offset().top;\r
             ret.left = el.offset().left;\r
-            ret.width = parseInt(el.outerWidth(true), 10) - (b*2);\r
-            ret.height = parseInt(el.outerHeight(true), 10) - (b*2);\r
+            ret.width = parseInt(el.outerWidth(true), 10) - (b * 2);\r
+            ret.height = parseInt(el.outerHeight(true), 10) - (b * 2);\r
             return ret;\r
         };\r
 \r
         s = [\r
-            function(){\r
+            function () {\r
                 b.animate(bounds($('#kiwi .msginput')), 2000, '', next_s);\r
             },\r
 \r
-            function(){\r
+            function () {\r
                 b.animate(bounds($('#kiwi .userlist')), 2000, '', next_s);\r
             },\r
 \r
-            function(){\r
+            function () {\r
                 b.animate(bounds($('#panel1')), 2000, '', next_s);\r
             },\r
 \r
-            function(){\r
+            function () {\r
                 b.animate(bounds($('#kiwi .cur_topic')), 2000, '', next_s);\r
             },\r
 \r
-            function(){\r
+            function () {\r
                 b.animate(bounds($('#kiwi .windowlist')), 2000, '', next_s);\r
             }\r
         ];\r
index 4295f0ea9cdfe3012eb05eace97ea687766f1813..37fec1ae2a92106900fe4e94dc1c2982cb400d4d 100644 (file)
@@ -238,10 +238,10 @@ kiwi.gateway = {
                 request: request,
                 type: type,
                 target: target,
-                params: params,
+                params: params
             }
         };
-        
+
         kiwi.gateway.sendData(data, callback);
     },
 
@@ -349,7 +349,7 @@ kiwi.gateway = {
     *   @param  {Function}  callback    A callback function
     */
     raw: function (data, callback) {
-        var data = {
+        data = {
             method: 'raw',
             args: {
                 data: data
@@ -382,14 +382,14 @@ kiwi.gateway = {
     *   @param  {Function}  callback    A callback function
     */
     kiwi: function (target, data, callback) {
-        var data = {
+        data = {
             method: 'kiwi',
             args: {
                 target: target,
                 data: data
             }
         };
-        
+
         kiwi.gateway.sendData(data, callback);
-    },
+    }
 };