get rid of "undefined" when there is trailing whitespace in manifest inline viewer (bug 773104)
This commit is contained in:
Родитель
b0b2da3317
Коммит
0d0a5e7871
|
@ -52,7 +52,9 @@
|
|||
headers = '';
|
||||
|
||||
_.each(manifestContents.content.split('\n'), function(v, k) {
|
||||
contents += format('<li>{0}</li>', v);
|
||||
if (v) {
|
||||
contents += format('<li>{0}</li>', v);
|
||||
}
|
||||
});
|
||||
$('<ol></ol>', {'id': 'manifest-contents', 'html': contents}).insertAfter($this);
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче