Custom data names for reference extensions.

Change-Id: I55088a1ddb40fc3648dc8b983c94330084bb65f1
This commit is contained in:
Dirk Dougherty 2016-05-10 20:28:58 -07:00
parent 8dbd7b96cf
commit ceb4a59409
1 changed files with 8 additions and 0 deletions

View File

@ -0,0 +1,8 @@
var <?cs
if:reference.testSupport ?>SUPPORT_TEST_<?cs
elif: reference.wearableSupport ?>SUPPORT_WEARABLE_<?cs
/if ?>DATA = [
<?cs each:page = docs.pages
?> { id:<?cs var: page.id ?>, label:"<?cs var:page.label ?>", link:"<?cs var:page.link ?>", type:"<?cs var:page.type ?>", deprecated:"<?cs var:page.deprecated ?>" }<?cs if:!last(page) ?>,<?cs /if ?>
<?cs /each ?>
];