equal
deleted
inserted
replaced
5 for ( var i = 0; i < theme_list.childNodes.length; i++ ) |
5 for ( var i = 0; i < theme_list.childNodes.length; i++ ) |
6 { |
6 { |
7 var child = theme_list.childNodes[i]; |
7 var child = theme_list.childNodes[i]; |
8 if ( child.tagName == 'DIV' ) |
8 if ( child.tagName == 'DIV' ) |
9 { |
9 { |
10 if ( $(child).hasClass('themebutton_theme_system') ) |
10 if ( $dynano(child).hasClass('themebutton_theme_system') ) |
11 { |
11 { |
12 if ( $(child).hasClass('themebutton_theme_disabled') ) |
12 if ( $dynano(child).hasClass('themebutton_theme_disabled') ) |
13 { |
13 { |
14 $(child).rmClass('themebutton_theme_disabled') |
14 $dynano(child).rmClass('themebutton_theme_disabled') |
15 } |
15 } |
16 if ( mode == 'show' ) |
16 if ( mode == 'show' ) |
17 { |
17 { |
18 domObjChangeOpac(0, child); |
18 domObjChangeOpac(0, child); |
19 child.style.display = 'block'; |
19 child.style.display = 'block'; |