wallet-core/contrib/articles/ui/figs/taler-presence-js.html

10 lines
210 B
HTML
Raw Normal View History

2016-08-17 11:53:38 +02:00
<script src="taler-wallet-lib.js"></script>
<script>
taler.onPresent(() => {
2016-08-23 15:12:57 +02:00
alert("Taler wallet is installed");
2016-08-17 11:53:38 +02:00
});
taler.onAbsent(() => {
2016-08-23 15:12:57 +02:00
alert("Taler wallet is not installed");
2016-08-17 11:53:38 +02:00
});
</script>