Author: batiste.bieler
Date: Wed Feb 18 11:37:30 2009
New Revision: 352
Modified:
trunk/pages/media/pages/javascript/change_list.js
Log:
Fix a bug on the CSS property
Modified: trunk/pages/media/pages/javascript/change_list.js
==============================================================================
--- trunk/pages/media/pages/javascript/change_list.js (original)
+++ trunk/pages/media/pages/javascript/change_list.js Wed Feb 18 11:37:30
2009
@@ -84,7 +84,7 @@
function show_children(id) {
$('.child-of-' + id).each(function() {
- this.style.display = 'block';
+ this.style.display='';
if(!$('a.collapsed', this).length) {
show_children(this.id.substring(9));
}
@@ -197,4 +197,4 @@
return true;
});
-});
\ No newline at end of file
+});
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"pinax-updates" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/pinax-updates?hl=en
-~----------~----~----~----~------~----~------~--~---