mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-06-07 12:09:11 -04:00
13 lines
305 B
JavaScript
13 lines
305 B
JavaScript
$("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();
|
|
}
|
|
});
|
|
}
|