Skip to content

Commit

Permalink
Merge pull request #19 from dahabi/master
Browse files Browse the repository at this point in the history
Fix HTML5 Version
  • Loading branch information
abuturla authored Nov 16, 2017
2 parents a11e1ba + 14c2fc6 commit da6dcd7
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion widget/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,10 @@
buildfire.navigation.goBack();
},200);
} else {
document.querySelector(".link-verified").style.display = "block";
if( buildfire.context.liveMode=="0")//CP
document.querySelector(".link-verified").style.display = "block";
else//HTML5 Version
window.open(content.twitterHandler, "_blank");
}
});
}
Expand Down

0 comments on commit da6dcd7

Please sign in to comment.