source: ether_2012/web/resources/js/etherHelper.js @ 319

Last change on this file since 319 was 319, checked in by vmipsl, 12 years ago

Import du projet Ether pour le nouveau look 2012

File size: 302 bytes
Line 
1///
2// Requires prototype and DomHelper.js
3
4function disableContainer(containerId)
5{
6        var container = Dom.getContainer(containerId);
7        container.addClassName("disable");
8}
9
10function enableContainer(containerId)
11{
12        var container = Dom.getContainer(containerId);
13        container.removeClassName("disable");
14}
15
Note: See TracBrowser for help on using the repository browser.