golden hour
/home/godaofbq/redlightsquared.com/wp-content/plugins/cf7-conditional-fields/jsdoc-out/scripts
⬆️ Go Up
Upload
File/Folder
Size
Actions
linenumber.js
671 B
Del
OK
prettify
-
Del
OK
Edit: linenumber.js
/*global document */ (() => { const source = document.getElementsByClassName('prettyprint source linenums'); let i = 0; let lineNumber = 0; let lineId; let lines; let totalLines; let anchorHash; if (source && source[0]) { anchorHash = document.location.hash.substring(1); lines = source[0].getElementsByTagName('li'); totalLines = lines.length; for (; i < totalLines; i++) { lineNumber++; lineId = `line${lineNumber}`; lines[i].id = lineId; if (lineId === anchorHash) { lines[i].className += ' selected'; } } } })();
Save