source:
trunk/grails-app/taglib/GSCFTagLib.groovy
@
86
Last change on this file since 86 was 86, checked in by duh, 14 years ago | |
---|---|
File size: 352 bytes |
Line | |
---|---|
1 | class GSCFTagLib { |
2 | |
3 | static namespace = "my" |
4 | |
5 | /** |
6 | * Imports JQuery Javascript to make the JQuery library available to the current page |
7 | */ |
8 | def jquery = {attrs, body -> |
9 | out << render(template: "/common/jquerysetup") |
10 | } |
11 | |
12 | def jqueryui = {attrs, body -> |
13 | out << render(template: "/common/jqueryuisetup") |
14 | } |
15 | } |
Note: See TracBrowser
for help on using the repository browser.