/usr/share/doc/libjs-jquery-simpletreemenu/examples/example.html is in libjs-jquery-simpletreemenu 1.5.0-2.
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 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 | <!DOCTYPE html>
<html>
<head>
<title>Simple Tree Menu Example</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script src="jquery-simpleTreeMenu.js"></script>
<link href="jquery-simpleTreeMenu.css" rel="stylesheet" type="text/css" />
</head>
<body>
<h1>Simple Tree Menu Examples</h1>
<div style="width:200px">
<ul id="demoTree">
<li><a href="">Hello</a></li>
<li>
<span>Fred</span>
<ul>
<li><a href="">Foo</a></li>
<li>
<span>Bar</span>
<ul>
<li><a href="example.html">Spic</a></li>
<li><a href="">Span</a></li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</body>
<script type="text/javascript">
$('#demoTree').simpleTreeMenu();
$('#demoTree').simpleTreeMenu('searchForUrl');
</script>
</html>
|