fix jscolor picker for new kanban items and fix the code according to CI

This commit is contained in:
MTRNord
2018-09-13 16:20:42 +02:00
parent e7a1433a30
commit 8b384d6bb3
2 changed files with 4 additions and 3 deletions

View File

@@ -250,12 +250,12 @@ define([
jscolorL = new window.jscolor(el,{onFineChange: onchange, valueElement:undefined});
jscolorL.show();
var currentColor = boardJSON.color;
if (currentColor == undefined) {
currentColor = ''
if (currentColor === undefined) {
currentColor = '';
}
jscolorL.fromString(currentColor);
},
buttonClick: function (el, boardId) {
buttonClick: function (el, boardId, e) {
e.stopPropagation();
if (framework.isReadOnly() || framework.isLocked()) { return; }
UI.confirm(Messages.kanban_deleteBoard, function (yes) {