Changeset 278 for trunk/web-app/js


Ignore:
Timestamp:
Jan 20, 2010, 8:34:36 PM (14 years ago)
Author:
gav
Message:

Add AssetTreeTagLib and asset overview.
Complete asset copy function with link and copy choices.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/web-app/js/overlayPane.js

    r155 r278  
     1function toggleBranch(divId, imageId) {
     2
     3        $(divId).toggle();
     4
     5        if( $(divId).visible() ) {
     6            $(imageId).src= '../images/skin/bullet_tree_minus.png';
     7        }
     8        else {
     9            $(imageId).src= '../images/skin/bullet_tree_plus.png';
     10        }
     11
     12//         return false;
     13}
     14
    115function showElement(id) {
    216    try {
Note: See TracChangeset for help on using the changeset viewer.