Skip to content

Instantly share code, notes, and snippets.

@viniciusdacal
Created October 23, 2018 18:14
Show Gist options
  • Save viniciusdacal/a45a82883d03aedadcb9d5272bd4861b to your computer and use it in GitHub Desktop.
Save viniciusdacal/a45a82883d03aedadcb9d5272bd4861b to your computer and use it in GitHub Desktop.
windowopen
const credentials = {
};
function setCredentials(user) {
credentials.user = user;
}
//to actually open the window..
var win = window.open("window.html");
win.onload = function() { win.callback = setCredentials; };
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment