Created
September 9, 2016 16:01
-
-
Save talitore/e49e20aa6a266b4bca778648cf6e9eda to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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