Merge branch 'master' into staging

pull/1/head
yflory 2019-12-12 16:24:05 +01:00
commit 510fd9a1a6
5 changed files with 8 additions and 4 deletions

View File

@ -475,7 +475,7 @@ define([
opt = opt || {};
var inputBlock = opt.password ? UI.passwordInput() : dialog.textInput();
var input = opt.password ? $(inputBlock).find('input')[0] : inputBlock;
var input = $(inputBlock).is('input') ? inputBlock : $(inputBlock).find('input')[0];
input.value = typeof(def) === 'string'? def: '';
var message;

View File

@ -74,6 +74,9 @@
#kanban-edit {
font-weight: bold;
}
&:hover {
cursor: move;
}
}
}

View File

@ -184,6 +184,9 @@ define([
var save = function () {
// Store the value
var name = $input.val();
if (!name || !name.trim()) {
return kanban.onChange();
}
// Remove the input
$(el).text(name);
// Save the value for the correct board

View File

@ -36,6 +36,7 @@
margin: 0;
padding: 0;
display: inline;
cursor: text;
}
.kanban-board header .kanban-title-button {

View File

@ -151,9 +151,6 @@
return handle.classList.contains('kanban-item');
},
accepts: function (el, target, source, sibling) {
if (sibling === null) {
return false;
}
if (self.options.readOnly) { return false; }
return true;
},