fixed edit action

This commit is contained in:
zmagod 2016-08-26 09:17:55 +02:00
parent cd6780775c
commit b0bd92e3f4

View file

@ -530,6 +530,11 @@
.css({
'pointer-events': 'none',
'color': '#d2d2d2'});
$(el)
.find('[data-action="edit"]')
.css({
'pointer-events': 'none',
'color': '#d2d2d2'});
});
}
});
@ -548,6 +553,11 @@
.css({
'pointer-events': 'auto',
'color': '#262626'});
$(el)
.find('[data-action="edit"]')
.css({
'pointer-events': 'auto',
'color': '#262626'});
});
}