blob: 9117971e4a71ca5e540f3e2f37fb7cde9a504856 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
 | $("document").ready(function() {
  ajaxify_watermark_add_form();
});
function ajaxify_watermark_add_form() {
  $("#gUploadWatermarkForm").ajaxForm({
    complete:function(xhr, statusText) {
      $("#gUploadWatermarkForm").replaceWith(xhr.responseText);
      ajaxify_watermark_add_form();
    }
  });
}
 |