/usr/share/doc/libjs-debugger/README.Debian is in libjs-debugger 0.5-4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | jsdebugger for Debian
--------------------------
In order to make use of jsdebugger in your html, include the following lines in
your html header:
<script language="javascript" type="text/javascript"
src="/javascript/debbuger/Debugger.js"></script>
[...]
if (typeof console == 'undefined' || !console) {
console = new Debugger(4,'HelloWorld');
console.start();
[...]
console.log('foo has value: ' + foo, 2);
}
-- Marcelo Jorge Vieira (metal) <metal@alucinados.com> Thu, 21 Oct 2008 15:28:00 +0300
|