File: WrapperTracer-en/doc/scripts/linenumber.js

Recommend this page to a friend!
  Classes of Juan Jose   Wrapper Tracer   WrapperTracer-en/doc/scripts/linenumber.js   Download  
File: WrapperTracer-en/doc/scripts/linenumber.js
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Wrapper Tracer
Display traced calls to given objects
Author: By
Last change: Update of WrapperTracer-en/doc/scripts/linenumber.js
Date: 2 years ago
Size: 674 bytes
 

Contents

Class file image Download
/*global document */ (function() { var source = document.getElementsByClassName('prettyprint source linenums'); var i = 0; var lineNumber = 0; var lineId; var lines; var totalLines; var 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'; } } } })();