mirror of
https://github.com/DavidAnson/markdownlint.git
synced 2025-09-22 05:40:48 +02:00
Convert from innerText to textContent (W3C standard).
This commit is contained in:
parent
a5f811ad1a
commit
b7f8a52899
2 changed files with 2 additions and 2 deletions
|
@ -95,7 +95,7 @@
|
|||
|
||||
// Handle violation navigation
|
||||
function onLineNumberClick(e) {
|
||||
var line = document.getElementById("l" + e.target.innerText);
|
||||
var line = document.getElementById("l" + e.target.textContent);
|
||||
if (line) {
|
||||
var highlighted = document.getElementsByClassName("highlight");
|
||||
Array.prototype.forEach.call(highlighted, function forElement(element) {
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
CACHE MANIFEST
|
||||
# 2015-05-07
|
||||
# 2015-05-08
|
||||
browser-polyfills.js
|
||||
default.css
|
||||
default.htm
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue