Skip to content

Commit 9861aef

Browse files
authored
Merge pull request #15 from ahabeb/master
navigate to home after 200ms
2 parents 014266b + 45cca65 commit 9861aef

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

widget/index.html

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,10 @@
6161
buildfire.getContext(function (err, context) {
6262
if (context.device.platform != "web") {
6363
buildfire.navigation.openWindow(content.facebookId, "_blank");
64-
buildfire.navigation.goBack();
64+
65+
setTimeout(function () {
66+
buildfire.navigation.goBack();
67+
},200);
6568
} else {
6669
document.querySelector(".link-verified").style.display = "block";
6770
}

0 commit comments

Comments
 (0)