mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-07 13:22:07 -05:00
jsdoc template: take out all alphabetical sorting.
This commit is contained in:
parent
c0d63b1faf
commit
713649206b
1 changed files with 1 additions and 5 deletions
|
@ -56,7 +56,6 @@
|
||||||
<if test="data.augments.length"><br />Extends
|
<if test="data.augments.length"><br />Extends
|
||||||
{+
|
{+
|
||||||
data.augments
|
data.augments
|
||||||
.sort()
|
|
||||||
.map(
|
.map(
|
||||||
function($) { return new Link().toSymbol($); }
|
function($) { return new Link().toSymbol($); }
|
||||||
)
|
)
|
||||||
|
@ -147,7 +146,6 @@
|
||||||
.filter(
|
.filter(
|
||||||
function($) { return $.memberOf == contributers[i] }
|
function($) { return $.memberOf == contributers[i] }
|
||||||
)
|
)
|
||||||
.sort(makeSortby("name"))
|
|
||||||
.map(
|
.map(
|
||||||
function($) { return new Link().toSymbol($.alias).withText($.name) }
|
function($) { return new Link().toSymbol($.alias).withText($.name) }
|
||||||
)
|
)
|
||||||
|
@ -206,7 +204,6 @@
|
||||||
.filter(
|
.filter(
|
||||||
function($) { return $.memberOf == contributers[i] }
|
function($) { return $.memberOf == contributers[i] }
|
||||||
)
|
)
|
||||||
.sort(makeSortby("name"))
|
|
||||||
.map(
|
.map(
|
||||||
function($) { return new Link().toSymbol($.alias).withText($.name) }
|
function($) { return new Link().toSymbol($.alias).withText($.name) }
|
||||||
)
|
)
|
||||||
|
@ -221,7 +218,7 @@
|
||||||
</if>
|
</if>
|
||||||
<!-- ============================== events summary ======================== -->
|
<!-- ============================== events summary ======================== -->
|
||||||
<if test="data.events.length">
|
<if test="data.events.length">
|
||||||
{! var ownEvents = data.events.filter(function($){return $.memberOf == data.alias && !$.isNamespace}).sort(makeSortby("name")); !}
|
{! var ownEvents = data.events.filter(function($){return $.memberOf == data.alias && !$.isNamespace}); !}
|
||||||
<if test="ownEvents.length">
|
<if test="ownEvents.length">
|
||||||
<table class="summaryTable" cellspacing="0" summary="A summary of the events documented in the class {+data.alias+}.">
|
<table class="summaryTable" cellspacing="0" summary="A summary of the events documented in the class {+data.alias+}.">
|
||||||
<caption>Event Summary</caption>
|
<caption>Event Summary</caption>
|
||||||
|
@ -265,7 +262,6 @@
|
||||||
.filter(
|
.filter(
|
||||||
function($) { return $.memberOf == contributers[i] }
|
function($) { return $.memberOf == contributers[i] }
|
||||||
)
|
)
|
||||||
.sort(makeSortby("name"))
|
|
||||||
.map(
|
.map(
|
||||||
function($) { return new Link().toSymbol($.alias).withText($.name) }
|
function($) { return new Link().toSymbol($.alias).withText($.name) }
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in a new issue