Updated application sources
[apps/web/sample/CallLog.git] / project / js / main.js
index 8a205f5..27ca1c4 100644 (file)
@@ -1,78 +1,85 @@
 /*
- *      Copyright 2013  Samsung Electronics Co., Ltd
- *
- *      Licensed under the Flora License, Version 1.1 (the "License");
- *      you may not use this file except in compliance with the License.
- *      You may obtain a copy of the License at
- *
- *              http://floralicense.org/license/
- *
- *      Unless required by applicable law or agreed to in writing, software
- *      distributed under the License is distributed on an "AS IS" BASIS,
- *      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- *      See the License for the specific language governing permissions and
- *      limitations under the License.
- */
+*      Copyright 2013  Samsung Electronics Co., Ltd
+*
+*      Licensed under the Flora License, Version 1.1 (the "License");
+*      you may not use this file except in compliance with the License.
+*      You may obtain a copy of the License at
+*
+*              http://floralicense.org/license/
+*
+*      Unless required by applicable law or agreed to in writing, software
+*      distributed under the License is distributed on an "AS IS" BASIS,
+*      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+*      See the License for the specific language governing permissions and
+*      limitations under the License.
+*/
 
 /*jslint devel: true*/
 /*global $, tizen, App  */
 
 /**
- * This file acts as a loader for the application and its dependencies
- *
- * First, the 'app.js' script is loaded .
- * Then, scripts defined in 'app.requires' are loaded.
- * Finally, the app is initialised - the app is instantiated ('app = new App()')
- * and 'app.init()' is called.
- */
-
+* This file acts as a loader for the application and its dependencies
+*
+* First, the 'app.js' script is loaded .
+* Then, scripts defined in 'app.requires' are loaded.
+* Finally, the app is initialised - the app is instantiated ('app = new App()')
+* and 'app.init()' is called.
+*/
 
 var app = null;
 
 (function () { // strict mode wrapper
-       'use strict';
+    'use strict';
+
+    ({
+        /**
+        * Loader init - load the App constructor
+        */
+        init: function init() {
+            var self = this;
+            $.getScript('js/app.js')
+                .done(function () {
+                    // once the app is loaded, create the app object
+                    // and load the libraries
+                    app = new App();
+                    self.loadLibs();
+                })
+                .fail(this.onGetScriptError);
+        },
+
+        /**
+        * Load dependencies
+        */
+        loadLibs: function loadLibs() {
+            var loadedLibs = 0;
+            if ($.isArray(app.requires)) {
+                $.each(app.requires, function (index, filename) {
+                    $.getScript(filename)
+                        .done(function () {
+                            loadedLibs += 1;
+                            if (loadedLibs >= app.requires.length) {
+                                // all dependencies are loaded,
+                                // initialise the app
+                                app.init();
+                            }
+                        })
+                        .fail(this.onGetScriptError);
+                });
+            }
+        },
 
-       ({
-               /**
-                * Loader init - load the App constructor
-                */
-               init: function init() {
-                       var self = this;
-                       $.getScript('js/app.js')
-                               .done(function () {
-                                       // once the app is loaded, create the app object
-                                       // and load the libraries
-                                       app = new App();
-                                       self.loadLibs();
-                               })
-                               .fail(this.onGetScriptError);
-               },
+        /**
+        * Handle ajax errors
+        */
+        onGetScriptError: function onGetScriptError(
+            e,
+            jqxhr,
+            setting,
+            exception
+        ) {
+            console.error('An error occurred: ' + e.message);
+        }
 
-               /**
-                * Load dependencies
-                */
-               loadLibs: function loadLibs() {
-                       var loadedLibs = 0;
-                       if ($.isArray(app.requires)) {
-                               $.each(app.requires, function (index, filename) {
-                                       $.getScript(filename)
-                                               .done(function () {
-                                                       loadedLibs += 1;
-                                                       if (loadedLibs >= app.requires.length) {
-                                                               // All dependencies are loaded - initialise the app
-                                                               app.init();
-                                                       }
-                                               })
-                                               .fail(this.onGetScriptError);
-                               });
-                       }
-               },
+    }).init(); // run the loader
 
-               /**
-                * Handle ajax errors
-                */
-               onGetScriptError: function onGetScriptError(e, jqxhr, setting, exception) {
-                       console.error('An error occurred: ' + e.message);
-               }
-       }).init(); // run the loader
 }());