1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

update messages on pluginspage.js

This commit is contained in:
Luke Pulverenti 2015-01-31 21:41:35 -05:00
parent f64c7b3818
commit fd496448ac
4 changed files with 22 additions and 8 deletions

View file

@ -2382,7 +2382,7 @@
}
},
renderGenres: function (elem, item, context) {
renderGenres: function (elem, item, context, limit) {
var html = '';
@ -2390,6 +2390,10 @@
for (var i = 0, length = genres.length; i < length; i++) {
if (limit && i >= limit) {
break;
}
if (i > 0) {
html += '<span>&nbsp;&nbsp;/&nbsp;&nbsp;</span>';
}