diff options
Diffstat (limited to 'www/js/WizardCtrl.js')
| -rw-r--r-- | www/js/WizardCtrl.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/www/js/WizardCtrl.js b/www/js/WizardCtrl.js index 86c4cbe9..726cc6f4 100644 --- a/www/js/WizardCtrl.js +++ b/www/js/WizardCtrl.js @@ -131,8 +131,9 @@ angular.module('zmApp.controllers').controller('zmApp.WizardCtrl', ['$scope', '$ if (tail) t = tail; //$ionicLoading.show({template: 'trying ' + urls[0].server}); NVR.log("zmWizard test.." + urls[0] + t); - return $http.get(urls[0] + t).then(function () { + return $http.get(urls[0] + t).then(function (succ) { NVR.log("Success: on " + urls[0] + t); + //NVR.log (JSON.stringify(succ)); //$ionicLoading.hide(); d.resolve(urls[0]); return d.promise; |
