mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-06 04:42:15 -05:00
jsdoc template: remove unused allclasses template.
This commit is contained in:
parent
0e6811f022
commit
4e227dd361
2 changed files with 0 additions and 20 deletions
|
@ -14,7 +14,6 @@ var Render = new function() {
|
|||
example: 'example.tmpl',
|
||||
constructor: 'constructor.tmpl',
|
||||
html: 'html.tmpl',
|
||||
allClasses: 'allClasses.tmpl',
|
||||
menu: 'packages.tmpl',
|
||||
operator: 'operator.tmpl',
|
||||
packagesjs: 'packagesjs.tmpl'
|
||||
|
@ -301,9 +300,6 @@ var Render = new function() {
|
|||
html: function(content) {
|
||||
return templates.html.process(content);
|
||||
},
|
||||
allClasses: function(symbol) {
|
||||
return templates.allClasses.process(symbol);
|
||||
},
|
||||
menu: function(html) {
|
||||
return templates.menu.process(html);
|
||||
},
|
||||
|
|
|
@ -1,16 +0,0 @@
|
|||
<div align="center">{+new Link().toFile("index.html").withText("Class Index")+}</div>
|
||||
<hr />
|
||||
<h2>Classes</h2>
|
||||
<ul class="classList">
|
||||
<for each="thisClass" in="data">
|
||||
<li>{!
|
||||
if (thisClass.alias == "_global_") {
|
||||
output += "<i>"+new Link().toClass(thisClass.alias)+"</i>";
|
||||
}
|
||||
else {
|
||||
output += new Link().toClass(thisClass.alias);
|
||||
}
|
||||
!}</li>
|
||||
</for>
|
||||
</ul>
|
||||
<hr />
|
Loading…
Reference in a new issue