Skip to content

Instantly share code, notes, and snippets.

@talitore
Created September 9, 2016 16:01
Show Gist options
  • Save talitore/e49e20aa6a266b4bca778648cf6e9eda to your computer and use it in GitHub Desktop.
Save talitore/e49e20aa6a266b4bca778648cf6e9eda to your computer and use it in GitHub Desktop.
// Works
save({
success: function() {
setTimeout(function() {
location = url;
}, 1000);
}
});
// Throws 10004
save({
success: function() {
location = url;
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment