templator/js/script.js

16 lines
1.0 KiB
JavaScript
Raw Normal View History

2022-12-05 21:39:13 +00:00
$(function(){var msg=false;$('#file-form input[name="write"]').click(function(){var f=this.form;var data={file_content:$(f).find('#file_content').get(0).value,xd_check:$(f).find('input[name="xd_check"]').get(0).value,write:1};if(msg==false){msg=$('<p style="font-weight:bold; color:red;"></p>');$('#file_content').parent().after(msg);}
msg.text(dotclear.msg.saving_document);$.post(document.location.href,data,function(res,status){var err=$(res).find('div.error li:first');if(err.length>0){msg.text(dotclear.msg.error_occurred+' '+err.text());return;}else{msg.text(dotclear.msg.document_saved);$('#file-chooser').empty();$(res).find('#file-chooser').children().appendTo('#file-chooser');}});return false;});
$("#filecat").parent().parent().hide();
$("#filesource").change(function() {
var f = $(this).val();
if (f == 'category') {
$("#filename, #filetitle").parent().parent().hide();
$("#filecat").parent().parent().show();
}
else {
$("#filename, #filetitle").parent().parent().show();
$("#filecat").parent().parent().hide();
}
});
});