fix #480, enable bbcode autocomplete for photo comments and remove some redundant javascript

This commit is contained in:
Mario Vavti
2016-08-13 22:17:47 +02:00
parent 165f442d70
commit 1b90e851f9
4 changed files with 3 additions and 16 deletions

View File

@@ -7,21 +7,7 @@ $(document).ready(function() {
$("#photo-edit-newtag").val('@' + data.name);
});
$('#id_body').bbco_autocomplete('bbcode');
$('#contact_allow, #contact_deny, #group_allow, #group_deny').change(function() {
var selstr;
$('#contact_allow option:selected, #contact_deny option:selected, #group_allow option:selected, #group_deny option:selected').each( function() {
selstr = $(this).text();
$('#jot-perms-icon').removeClass('fa-unlock').addClass('fa-lock');
$('#jot-public').hide();
});
if(selstr === null) {
$('#jot-perms-icon').removeClass('fa-lock').addClass('fa-unlock');
$('#jot-public').show();
}
}).trigger('change');
$('textarea').bbco_autocomplete('bbcode');
showHideBodyTextarea();
});