Browse Source

ajax.js: fix a cache problem: clicking back sometimes makes submit button disabled

pull/40/head
czaks 10 years ago
parent
commit
803704db6d
  1. 3
      js/ajax.js

3
js/ajax.js

@ -14,6 +14,9 @@
$(window).ready(function() {
var settings = new script_settings('ajax');
var do_not_ajax = false;
// Enable submit button if disabled (cache problem)
$('input[type="submit"]').removeAttr('disabled');
var setup_form = function($form) {
$form.submit(function() {

Loading…
Cancel
Save