fix jscolor picker for new kanban items and fix the code according to CI
This commit is contained in:
parent
e7a1433a30
commit
8b384d6bb3
@ -250,12 +250,12 @@ define([
|
|||||||
jscolorL = new window.jscolor(el,{onFineChange: onchange, valueElement:undefined});
|
jscolorL = new window.jscolor(el,{onFineChange: onchange, valueElement:undefined});
|
||||||
jscolorL.show();
|
jscolorL.show();
|
||||||
var currentColor = boardJSON.color;
|
var currentColor = boardJSON.color;
|
||||||
if (currentColor == undefined) {
|
if (currentColor === undefined) {
|
||||||
currentColor = ''
|
currentColor = '';
|
||||||
}
|
}
|
||||||
jscolorL.fromString(currentColor);
|
jscolorL.fromString(currentColor);
|
||||||
},
|
},
|
||||||
buttonClick: function (el, boardId) {
|
buttonClick: function (el, boardId, e) {
|
||||||
e.stopPropagation();
|
e.stopPropagation();
|
||||||
if (framework.isReadOnly() || framework.isLocked()) { return; }
|
if (framework.isReadOnly() || framework.isLocked()) { return; }
|
||||||
UI.confirm(Messages.kanban_deleteBoard, function (yes) {
|
UI.confirm(Messages.kanban_deleteBoard, function (yes) {
|
||||||
|
|||||||
@ -275,6 +275,7 @@
|
|||||||
nodeItem.dragendfn = element.dragend;
|
nodeItem.dragendfn = element.dragend;
|
||||||
nodeItem.dropfn = element.drop;
|
nodeItem.dropfn = element.drop;
|
||||||
__onclickHandler(nodeItem);
|
__onclickHandler(nodeItem);
|
||||||
|
__onColorClickHandler(nodeItem, "item");
|
||||||
board.appendChild(nodeItem);
|
board.appendChild(nodeItem);
|
||||||
// send event that board has changed
|
// send event that board has changed
|
||||||
self.onChange();
|
self.onChange();
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user