Skip to content

Instantly share code, notes, and snippets.

@samueleastdev
Created September 17, 2021 21:05
Show Gist options
  • Save samueleastdev/7247b168521ec99f6f6a80d2d5e551c7 to your computer and use it in GitHub Desktop.
Save samueleastdev/7247b168521ec99f6f6a80d2d5e551c7 to your computer and use it in GitHub Desktop.
Opens an Electron app from browser or asked them to install it.
var timeout;
document.getElementById('link').addEventListener('click', function(e) {
timeout = window.setTimeout(function() {
alert('install app');
}, 1000);
window.location = "app://";
e.preventDefault();
});
window.addEventListener('blur', function(e) {
window.clearTimeout(timeout);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment