| Subject: | Just tested this against the... |  
| Summary: | Package rating comment |  
| Messages: | 1 |  
| Author: | Alan B |  
| Date: | 2021-03-26 19:44:23 |  
|   |  
 
 | 
 | 
Alan B rated this package as follows:
| Utility:  | Insufficient | 
| Consistency:  | Not sure | 
| Documentation:  | Not sure | 
| Examples:  | Not sure | 
| 
 | 
  Alan B - 2021-03-26 19:44:23  
Just tested this against the following JS function and get an error: 
 
//--------------------------------------------------------------------------- 
            function doShowHideTab(tabTitle, show) { 
                if ( show ) { /* abc*/ 
                    removeClassName('.tabby_'+tabTitle.replace(/ /g,'_'), 'hidden'); 
                    removeClassName('.tabbySpacer_'+tabTitle.replace(/ /g,'_'), 'hidden'); 
                } 
                else { 
                    addClassName('.tabby_'+tabTitle.replace(/ /g,'_'), 'hidden'); 
                    addClassName('.tabbySpacer_'+tabTitle.replace(/ /g,'_'), 'hidden'); 
                } 
            } 
  
   |