Skip to content

Commit

Permalink
Merge pull request #12 from ahabeb/master
Browse files Browse the repository at this point in the history
navigate to home after 200ms
  • Loading branch information
abuturla authored Mar 16, 2017
2 parents 39a93f8 + 1391098 commit 20ad948
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion widget/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,9 @@
buildfire.getContext(function (err, context) {
if (context.device.platform != "web") {
buildfire.navigation.openWindow(content.opentableId, "system");
buildfire.navigation.goBack();
setTimeout(function () {
buildfire.navigation.goBack();
},200);
} else {
document.querySelector(".link-verified").style.display = "block";
}
Expand Down

0 comments on commit 20ad948

Please sign in to comment.