|
|
|
@ -51,7 +51,13 @@ $(document).ready(function() {
|
|
|
|
|
$.getJSON(config.relative_path + '/api/user/' + utils.slugify(data.options.title), function(user) {
|
|
|
|
|
var el = $('#taskbar [data-uuid="' + data.uuid + '"] a');
|
|
|
|
|
el.find('i').remove();
|
|
|
|
|
el.css('background-image', 'url(' + user.picture + ')');
|
|
|
|
|
if (user.picture) {
|
|
|
|
|
el.css('background-image', 'url(' + user.picture + ')');
|
|
|
|
|
} else {
|
|
|
|
|
el .css('background-color', user['icon:bgColor'])
|
|
|
|
|
.text(user['icon:text'])
|
|
|
|
|
.addClass('user-icon');
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|