get rid of "undefined" when there is trailing whitespace in manifest inline viewer (bug 773104)

This commit is contained in:
Chris Van 2012-11-13 20:44:03 -08:00
Родитель b0b2da3317
Коммит 0d0a5e7871
1 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -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);