source: trunk/grails-app/taglib/GSCFTagLib.groovy @ 69

Last change on this file since 69 was 54, checked in by keesvb, 14 years ago

Added fix for postgres problems, refactored JQuery code in tag library

File size: 353 bytes
Line 
1class 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
16}
Note: See TracBrowser for help on using the repository browser.