includes/clientside/static/theme-manager.js
changeset 699 c7d737202d59
parent 658 49dee7f374bf
child 823 4596c40aaa94
equal deleted inserted replaced
696:bd5069e1f19a 699:c7d737202d59
     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';