1
0
Fork 0

Fix of graphviewer change labelcolor

This commit is contained in:
Michael Hackstein 2014-04-29 11:04:21 +02:00
parent 253e893c76
commit 8a788b3605
1 changed files with 2 additions and 2 deletions

View File

@ -306,13 +306,13 @@ function NodeShaperControls(list, shaper) {
selected = $("input[type='radio'][name='colour']:checked").attr("id"),
labels = [], colours = [];
lblList.each(function(i, t) {
var val = $(t).attr("value");
var val = $(t).val();
if (val !== "") {
labels.push(val);
}
});
colList.each(function(i, t) {
var val = $(t).attr("value");
var val = $(t).val();
if (val !== "") {
colours.push(val);
}