Line | |
---|
1 | <div> |
---|
2 | <input dojotAttachPoint="search" dojoAttachEvent="onkeyup: onSearch"> |
---|
3 | <ul> |
---|
4 | {% for result in results %} |
---|
5 | <li>{% if result.type %}<i>{{ result.type }}</i> {% endif %}{% ifequal result.type "Function" %}{% if not result.resources %}function {% endif %}{% endifequal %}{{ result.name }}{% ifequal result.type "Function" %}{% if not result.resources %}({% for parameter in result.parameters %}{% if not forloop.first %}, {% endif %}{% if parameter.types %}<i>{% for type in parameter.types %}{% if not forloop.first %}|{% endif %}{{ type.title }}{% endfor %}{% if parameter.optional %}?{% endif %}{% if parameter.repeating %}...{% endif %}</i> {% endif %}{{ parameter.name }}{% endfor %}{% endif %}{% endifequal %}{% ifequal result.type "Function" %}{% if not result.resources %}){% endif %}{% endifequal %}</li> |
---|
6 | {% endfor %} |
---|
7 | </ul> |
---|
8 | </div> |
---|
Note: See
TracBrowser
for help on using the repository browser.