UNPKG

dashjs

Version:

A reference client implementation for the playback of MPEG DASH via Javascript and compliant browsers.

45 lines (40 loc) 1.24 kB
/** * @license * JSDoc is free software, licensed under the Apache License, Version 2.0 (the * "License"). Commercial and non-commercial use are permitted in compliance * with the License. * * Copyright (c) 2011-present Michael Mathews <micmath@gmail.com> and the * [contributors to JSDoc](https://github.com/jsdoc/jsdoc/graphs/contributors). * All rights reserved. * * You may obtain a copy of the License at: * http://www.apache.org/licenses/LICENSE-2.0 */ /** * @fileoverview Adds line numbers to source code in the docs. * * Part of the default template in JSDoc. */ (() => { 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'; } } } })();