Add file count to displayFilesAsHTML

This commit is contained in:
toby 2017-02-09 11:59:47 -05:00
parent c67957da81
commit 6b8ab2bf16
1 changed files with 3 additions and 1 deletions

View File

@ -978,7 +978,9 @@ var Utils = {
};
var Utils = this;
var html = "";
var html = "<div style='padding: 5px;'>" +
files.length +
" file(s) found</div>\n";
files.forEach(function(file, i) {
if (typeof file.contents !== "undefined") {
html += formatFile(file, i);