Last active
August 29, 2015 14:07
-
-
Save jakub-g/9d6a483501c33055d73d to your computer and use it in GitHub Desktop.
AT: deprecated widgets used as containers Usage of most of the widgets as "containers" (i.e. {widget}{/widget}) was deprecated. You should switch to the self-closing syntax, i.e. {widget /}
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "AT: deprecated widgets used as containers", | |
"description": "Usage of most of the widgets as \"containers\" (i.e. {widget}{/widget}) was deprecated. You should switch to the self-closing syntax, i.e. {widget /}", | |
"data": {} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{var counter = 0 /} | |
{macro main()} | |
{call tooltipDefinitions() /} | |
{call writeLinks() /} | |
{set counter = counter + 1 /} <br> | |
The main macro was executed ${counter} times. | |
{/macro} | |
{macro tooltipDefinitions()} | |
{@aria:Tooltip { | |
id: "tt1", | |
title: "Dialog Sample" | |
}} | |
First tooltip; counter = ${counter} | |
{/@aria:Tooltip} | |
{@aria:Tooltip { | |
id: "tt2", | |
title: "Dialog Sample", | |
macro : "tt2macro" | |
} /} | |
{/macro} | |
{macro tt2macro()} | |
Second tooltip; counter = ${counter} | |
{/macro} | |
{macro writeLinks()} | |
{@aria:Link { label : "one", tooltipId: "tt1" } /} | |
{@aria:Link { label : "two", tooltipId: "tt2" } /} | |
{/macro} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
({ | |
$classpath:'InstantTemplateScript', | |
$prototype : { | |
myMethod: function() { | |
} | |
} | |
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{macro main()} | |
{/macro} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Created by Instant Aria Templates, viewable on http://instant.ariatemplates.com/jakub-g/9d6a483501c33055d73d