Skip to content

Commit

Permalink
clean up doctheme, fix line jumping
Browse files Browse the repository at this point in the history
  • Loading branch information
dnolen committed Aug 4, 2015
1 parent a2e43cb commit 3422eee
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 23 deletions.
2 changes: 1 addition & 1 deletion doctheme/assets/js/yui-prettify.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ YUI().use('node', function(Y) {
});
var h = location.hash;
location.hash = '';
h = h.replace('LINE_', 'LINENUM_');
h = h.replace('l', 'LINENUM_');
location.hash = h;
}
});
2 changes: 1 addition & 1 deletion doctheme/partials/method.handlebars
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<a name="methods_{{name}}"></a>
<div class="method item{{#if access}} {{access}}{{/if}}">
{{#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}}
{{#if final}}<code>final</code> {{/if}}<strong class="name">`{{name}}`</strong>( `{{paramsList}} ` ) {{#if access}}<em>`/* {{access}} method */`</em>{{/if}}
<br>
<span class="foundat">
{{#if overwritten_from}}
Expand Down
21 changes: 0 additions & 21 deletions doctheme/partials/sidebar.handlebars
Original file line number Diff line number Diff line change
@@ -1,24 +1,3 @@
<div id="modules" class="sidebox">
<div class="hd">
<h2 class="no-toc">Modules</h2>
</div>
<div class="bd">
<ul>
{{#modules}}
<li><a href="{{../projectRoot}}modules/{{name}}.html">{{displayName}}</a>
{{#if submodules}}
<ul>
{{#submodules}}
<li><a href="{{../../../projectRoot}}modules/{{../name}}.html#{{displayName}}">{{displayName}}</a></li>
{{/submodules}}
</ul>
{{/if}}
</li>
{{/modules}}
</ul>
</div>
</div>

<div id="classes" class="sidebox">
<div class="hd">
<h2 class="no-toc">Classes</h2>
Expand Down

0 comments on commit 3422eee

Please sign in to comment.