We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7c980e3 commit a42fbf7Copy full SHA for a42fbf7
static/history.js
@@ -23,7 +23,7 @@ document.getElementById('staticBackdrop').addEventListener('show.bs.modal',(even
23
//for every key-value pair inside our dictionary
24
var list_item = document.createElement('li');
25
// create a list element
26
- list_item.appendChild(document.createTextNode(""+key+": "+value+""));
+ list_item.innerHTML="<b>"+key+"</b>: "+value+"";
27
//put the useful data context inside list_item
28
list.appendChild(list_item);
29
// finally append the element to the list parent
0 commit comments