Use description as title for list elements

This commit is contained in:
Torbjörn Norinder 2014-03-18 12:01:59 +01:00
parent 59dcdf7c33
commit 39c8af7c28

View file

@ -66,6 +66,7 @@
var e = this.events[row];
var li = $('<li>' + e.host + " " + e.service + '</li>');
li.attr('class', "state " + e.state);
li.attr('title', e.description);
this.ul.append(li);
}
}