var name formatting
authorDarren <darren@darrenwhitlen.com>
Sat, 18 Oct 2014 01:27:31 +0000 (02:27 +0100)
committerDarren <darren@darrenwhitlen.com>
Sat, 18 Oct 2014 01:27:31 +0000 (02:27 +0100)
client/src/app.js

index 032c0482f79a4368c1d1f6076376df288aefd253..087de5f62b248c2871218c5dda17e0e70a59c992 100644 (file)
@@ -181,8 +181,9 @@ _kiwi.global = {
 \r
     // Entry point to start the kiwi application\r
     init: function (opts, callback) {\r
-        var localePromise, themePromise,\r
+        var locale_promise, theme_promise,\r
             that = this;\r
+\r
         opts = opts || {};\r
 \r
         this.initUtils();\r
@@ -194,7 +195,7 @@ _kiwi.global = {
         // Set the window title\r
         window.document.title = opts.server_settings.client.window_title || 'Kiwi IRC';\r
 \r
-        localePromise = new Promise(function (resolve) {\r
+        locale_promise = new Promise(function (resolve) {\r
             var locale = _kiwi.global.settings.get('locale') || 'magic';\r
             $.getJSON(opts.base_path + '/assets/locales/' + locale + '.json', function (locale) {\r
                 if (locale) {\r
@@ -206,7 +207,7 @@ _kiwi.global = {
             });\r
         });\r
 \r
-        themePromise = new Promise(function (resolve) {\r
+        theme_promise = new Promise(function (resolve) {\r
             var text_theme = opts.server_settings.client.settings.text_theme || 'default';\r
             $.getJSON(opts.base_path + '/assets/text_themes/' + text_theme + '.json', function(text_theme) {\r
                 opts.text_theme = text_theme;\r
@@ -215,7 +216,7 @@ _kiwi.global = {
         });\r
 \r
 \r
-        Promise.all([localePromise, themePromise]).then(function () {\r
+        Promise.all([locale_promise, theme_promise]).then(function () {\r
             _kiwi.app = new _kiwi.model.Application(opts);\r
 \r
             // Start the client up\r