Rollup merge of #42080 - pravic:jquery-removal-fix, r=frewsxcv

Fix regression introduced by jQuery removal

Fixes #42078.
Follows #41307.

r? @steveklabnik
cc @frewsxcv
This commit is contained in:
Mark Simulacrum 2017-05-19 14:16:22 -06:00 committed by GitHub
commit f3b7b61151
1 changed files with 3 additions and 3 deletions

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;
}