Merge branch 'bug-display-as-html'

This commit is contained in:
n1474335 2017-06-27 14:13:24 +00:00
commit b4fe708d70
1 changed files with 2 additions and 2 deletions

View File

@ -945,12 +945,12 @@ const Utils = {
* @param {Object[]} files
* @returns {html}
*/
displayFilesAsHTML: function(files){
displayFilesAsHTML: function(files) {
const formatDirectory = function(file) {
const html = "<div class='panel panel-default'>" +
"<div class='panel-heading' role='tab'>" +
"<h4 class='panel-title'>" +
file.fileName +
Utils.escapeHtml(file.fileName) +
// The following line is for formatting when HTML is stripped
"<span style='display: none'>\n0 bytes\n</span>" +
"</h4>" +