source: trunk/web-app/js/util.js @ 312

Last change on this file since 312 was 312, checked in by gav, 14 years ago

Refactor asset tree taglib to populate the asset tree table via an ajax call to AssetTreeService.
Move assetTree javascript to it's own js file and util javascript to a util.js file and service.

File size: 200 bytes
Line 
1
2function toggleUtil(id) {
3    $(id).toggle();
4}
5
6function showUtil(id) {
7    Effect.Appear(id,{duration:0.4,queue:'end'});
8}
9
10function hideUtil(id) {
11    Effect.Fade(id,{duration:0.4,queue:'end'});
12}
Note: See TracBrowser for help on using the repository browser.