diff options
| author | ARC <arjunrc@gmail.com> | 2015-05-03 11:15:32 -0400 |
|---|---|---|
| committer | ARC <arjunrc@gmail.com> | 2015-05-03 11:15:32 -0400 |
| commit | a838bdff9750af4ed6be0bad981ceb65341609f1 (patch) | |
| tree | ded6709c1bf2f9a8c255753f91fe9049905115c7 /www/js/app.js | |
| parent | 0c41ec273926cef1d40b6e8bc4bc6f08fb46212f (diff) | |
added infinite scrolling - now retrieving all events
Diffstat (limited to 'www/js/app.js')
| -rw-r--r-- | www/js/app.js | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/www/js/app.js b/www/js/app.js index 494ebdb9..8c207d35 100644 --- a/www/js/app.js +++ b/www/js/app.js @@ -34,11 +34,11 @@ angular.module('zmApp', [ // Also remember you need to add it to .config .factory('timeoutHttpIntercept', function ($rootScope, $q) { - console.log("*** HTTP INTERCEPTOR CALLED ***"); + //console.log("*** HTTP INTERCEPTOR CALLED ***"); return { 'request': function (config) { config.timeout = 15000; - console.log("*** HTTP INTERCEPTOR CALLED ***"); + //console.log("*** HTTP INTERCEPTOR CALLED ***"); return config; } }; @@ -97,6 +97,7 @@ angular.module('zmApp', [ // generates and error in desktops but works fine console.log("**** DEVICE READY ***"); + setTimeout(function () { $cordovaSplashscreen.hide() }, 3000) |
