summaryrefslogtreecommitdiff
path: root/www/js/app.js
diff options
context:
space:
mode:
authorPliable Pixels <pliablepixels@gmail.com>2018-10-08 12:14:32 -0400
committerPliable Pixels <pliablepixels@gmail.com>2018-10-08 12:14:32 -0400
commitbace2be553e3175ba7a47024c8352e43d285b620 (patch)
tree8cae03c058a6500ab225f65e5a2842e4db7bde07 /www/js/app.js
parent881a3b160a1320f2318712c1063e40775236099f (diff)
log cleanup, wait for eventserver init before sending messages
Diffstat (limited to 'www/js/app.js')
-rwxr-xr-xwww/js/app.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/www/js/app.js b/www/js/app.js
index bcfe67c0..b3553664 100755
--- a/www/js/app.js
+++ b/www/js/app.js
@@ -2302,7 +2302,7 @@ angular.module('zmApp', [
method = arguments[0].method;
var isOutgoingRequest = /^(http|https):\/\//.test(url);
if (window.cordova && isOutgoingRequest) {
- // console.log ("**** -->"+method+"<-- using native HTTP with:"+encodeURI(url));
+ //console.log ("**** -->"+method+"<-- using native HTTP with:"+encodeURI(url));
var d = $q.defer();
var options = {
method: method,
@@ -2328,7 +2328,7 @@ angular.module('zmApp', [
}
catch (e) {
- // console.log ("*** Native HTTP response: JSON parsing failed for "+url+", returning text");
+ //console.log ("*** Native HTTP response: JSON parsing failed for "+url+", returning text");
d.resolve({"data":succ.data});
return d.promise;
}