Ignore:
Timestamp:
Nov 10, 2009, 7:33:24 PM (14 years ago)
Author:
gav
Message:

Small adjustment to modifications show/hide in task show view, since we are now using prototype effects globally.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/grails-app/views/taskDetailed/show.gsp

    r181 r184  
    7878                                            <div id="modControlClosed">
    7979                                                <a href='' onclick="showElement('modifications');
    80                                                                                     showElement('modControlOpened');
    81                                                                                     hideElement('modControlClosed'); return false;">
     80                                                                                    Element.hide('modControlClosed');
     81                                                                                    Element.show('modControlOpened');
     82                                                                                    return false">
    8283                                                    Modifications <img  src="${resource(dir:'images/skin',file:'bullet_toggle_plus.png')}" alt="Show" />
    8384                                                </a>
     
    8586                                            <div id="modControlOpened" style="display:none;">
    8687                                                <a href='' onclick="hideElement('modifications');
    87                                                                                     hideElement('modControlOpened');
    88                                                                                     showElement('modControlClosed');
    89                                                                                     return false;">
     88                                                                                    Element.hide('modControlOpened');
     89                                                                                    Element.show('modControlClosed');
     90                                                                                    return false">
    9091                                                    Modifications <img  src="${resource(dir:'images/skin',file:'bullet_toggle_minus.png')}" alt="Show" />
    9192                                                </a>
Note: See TracChangeset for help on using the changeset viewer.