tiny fixes

This commit is contained in:
Pierre Bondoerffer
2017-06-12 12:41:03 +02:00
parent 6bc191725f
commit 5d565660a9

View File

@@ -589,7 +589,7 @@ var setEditable = function (editable) {
if (editable === false) { if (editable === false) {
// disable all the things // disable all the things
$('.realtime input, .realtime button').attr('disabled', APP.locked); $('.realtime input, .realtime button, .upper button, .realtime textarea').attr('disabled', APP.locked);
$('span.edit, span.remove').hide(); $('span.edit, span.remove').hide();
$('span.lock').addClass('fa-lock').removeClass('fa-unlock') $('span.lock').addClass('fa-lock').removeClass('fa-unlock')
.attr('title', Messages.poll_locked) .attr('title', Messages.poll_locked)
@@ -598,7 +598,7 @@ var setEditable = function (editable) {
// enable // enable
$('span.edit, span.remove').show(); $('span.edit, span.remove').show();
$('span.lock').css({'cursor': ''}); $('span.lock').css({'cursor': ''});
$('.realtime button').attr('disabled', APP.locked); $('.realtime button, .upper button, .realtime textarea').attr('disabled', APP.locked);
unlockElements(); unlockElements();
} }
}; };