Skip to content

Commit

Permalink
Fixed bug when back button is clicked
Browse files Browse the repository at this point in the history
  • Loading branch information
abuturla committed Jan 24, 2019
1 parent 8d16240 commit a0bab2e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion widget/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,10 @@
WidgetHome.isWebPlatform = true;
} else {
if (WidgetHome.data.content.link)
buildfire.navigation.openWindow(WidgetHome.data.content.link, "_blank");
buildfire.navigation.openWindow(WidgetHome.data.content.link, "_blank", function(){
//Go back due to issue with popup
buildfire.navigation.goBack();
});
}
}
else {
Expand Down

0 comments on commit a0bab2e

Please sign in to comment.