{% extends "base.template.html" %} {% block content %}
Name | Description |
---|---|
{$ component.id | link(component.name, component) $} | {$ component.description | firstParagraph | marked $} |
First include {$ doc.packageName| code $} javascript file in your HTML:
You can download this file from the following places:
Then load the module in your application by adding it as a dependent module:
{% code %} angular.module('app', [{% for require in doc.requires %}'{$ require $}', {% endfor %}'{$ doc.name $}']); {% endcode %}With that you're ready to get started!
{% endblock %}