Make documentation works again by removing two unnecessary ES6 pieces.

This commit is contained in:
pravic 2017-05-18 10:35:18 +03:00
parent 6af8c6c7d1
commit 1eb6639508

View File

@ -215,14 +215,14 @@
} else if (ev.target.tagName === 'SPAN' && hasClass(ev.target.parentNode, 'line-numbers')) {
var prev_id = 0;
function set_fragment(name) {
var set_fragment = function (name) {
if (browserSupportsHistoryApi()) {
history.replaceState(null, null, '#' + name);
window.hashchange();
} else {
location.replace('#' + name);
}
}
};
var cur_id = parseInt(ev.target.id, 10);
@ -685,7 +685,7 @@
}
function escape(content) {
let h1 = document.createElement('h1');
var h1 = document.createElement('h1');
h1.textContent = content;
return h1.innerHTML;
}