Great work, really like the plugin. Hopefully it gets listed in the CP Plugin Directory at some point.
I notice you can re-submit the form again and again by clicking the back button of the browser.
I don't know whether or not this is the best solution to fix this, but you can consider resetting the form:
window.addEventListener("pageshow", function() {
if(document.getElementById("my-form")) {
document.getElementById("my-form").reset();
}
});
Great work, really like the plugin. Hopefully it gets listed in the CP Plugin Directory at some point.
I notice you can re-submit the form again and again by clicking the back button of the browser.
I don't know whether or not this is the best solution to fix this, but you can consider resetting the form: