Skip to content

Commit

Permalink
Do not error on https geo error
Browse files Browse the repository at this point in the history
  • Loading branch information
eflowbeach committed Aug 31, 2016
1 parent 4d98972 commit 7bb6072
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
4 changes: 2 additions & 2 deletions build/script/mobileedd.js

Large diffs are not rendered by default.

6 changes: 5 additions & 1 deletion source/class/mobileedd/page/Map.js
Original file line number Diff line number Diff line change
Expand Up @@ -1661,7 +1661,11 @@ qx.Class.define("mobileedd.page.Map",
e.preventDefault();
e.stopPropagation();
}, this);
popup.show();

if(error.message != "Only secure origins are allowed (see: https://goo.gl/Y0ZkNV)."){
popup.show();
}

qx.event.Timer.once(function() {
popup.hide();
}, this, 5000)
Expand Down

0 comments on commit 7bb6072

Please sign in to comment.