2015-10-19 10:40:22 +01:00
|
|
|
div(ng-cloak).banner
|
2015-10-15 23:57:15 -07:00
|
|
|
dl.api-key
|
|
|
|
dt Display:
|
2015-05-31 02:14:55 -05:00
|
|
|
dd.directive(ng-class='{ active: appCtrl.apiType === "directive" }' ng-click='appCtrl.setType("directive")') Directive
|
|
|
|
dd.class(ng-class='{ active: appCtrl.apiType === "class" }' ng-click='appCtrl.setType("class")') Class
|
|
|
|
dd.interface(ng-class='{ active: appCtrl.apiType === "interface" }' ng-click='appCtrl.setType("interface")') Interface
|
|
|
|
dd.function(ng-class='{ active: appCtrl.apiType === "function" }' ng-click='appCtrl.setType("function")') Function
|
|
|
|
dd.const(ng-class='{ active: appCtrl.apiType === "const" }' ng-click='appCtrl.setType("const")') Const or Enum
|
|
|
|
dd.var(ng-class='{ active: appCtrl.apiType === "var" }' ng-click='appCtrl.setType("var")') Variable
|
|
|
|
input.api-filter(placeholder='Filter', ng-model='appCtrl.apiFilter')
|
2015-10-15 23:57:15 -07:00
|
|
|
article(class="l-content-small grid-fluid docs-content")
|
2015-05-31 02:14:55 -05:00
|
|
|
div(ng-repeat='section in appCtrl.apiSections' ng-if="(appCtrl.apiList[section.name] | filter: { title: appCtrl.apiFilter, docType: appCtrl.apiType }).length" ng-cloak)
|
2015-10-15 23:57:15 -07:00
|
|
|
h3 {{ section.title }}
|
|
|
|
ul.api-list
|
2015-05-31 02:14:55 -05:00
|
|
|
li.api-item(ng-repeat='item in appCtrl.apiList[section.name] | filter: { title: appCtrl.apiFilter, docType: appCtrl.apiType }')
|
2015-11-03 16:41:38 +00:00
|
|
|
a(ng-href='{{ item.path }}')
|
2015-10-15 23:57:15 -07:00
|
|
|
span(class='symbol {{ item.docType }}')
|
|
|
|
| {{ item.title }}
|