Skip to content

Commit 3422eee

Browse files
author
dnolen
committed
clean up doctheme, fix line jumping
1 parent a2e43cb commit 3422eee

File tree

3 files changed

+2
-23
lines changed

3 files changed

+2
-23
lines changed

doctheme/assets/js/yui-prettify.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ YUI().use('node', function(Y) {
1111
});
1212
var h = location.hash;
1313
location.hash = '';
14-
h = h.replace('LINE_', 'LINENUM_');
14+
h = h.replace('l', 'LINENUM_');
1515
location.hash = h;
1616
}
1717
});

doctheme/partials/method.handlebars

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<a name="methods_{{name}}"></a>
22
<div class="method item{{#if access}} {{access}}{{/if}}">
3-
{{#if final}}<code>final</code> {{/if}}{{#if returnType}}{{#crossLink returnType}}{{/crossLink}} {{/if}}<strong class="name">`{{name}}`</strong>( `{{paramsList}} ` ) {{#if access}}<em>`/* {{access}} method */`</em>{{/if}}
3+
{{#if final}}<code>final</code> {{/if}}<strong class="name">`{{name}}`</strong>( `{{paramsList}} ` ) {{#if access}}<em>`/* {{access}} method */`</em>{{/if}}
44
<br>
55
<span class="foundat">
66
{{#if overwritten_from}}

doctheme/partials/sidebar.handlebars

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,3 @@
1-
<div id="modules" class="sidebox">
2-
<div class="hd">
3-
<h2 class="no-toc">Modules</h2>
4-
</div>
5-
<div class="bd">
6-
<ul>
7-
{{#modules}}
8-
<li><a href="{{../projectRoot}}modules/{{name}}.html">{{displayName}}</a>
9-
{{#if submodules}}
10-
<ul>
11-
{{#submodules}}
12-
<li><a href="{{../../../projectRoot}}modules/{{../name}}.html#{{displayName}}">{{displayName}}</a></li>
13-
{{/submodules}}
14-
</ul>
15-
{{/if}}
16-
</li>
17-
{{/modules}}
18-
</ul>
19-
</div>
20-
</div>
21-
221
<div id="classes" class="sidebox">
232
<div class="hd">
243
<h2 class="no-toc">Classes</h2>

0 commit comments

Comments
 (0)