Changeset 1418 for trunk/wiki


Ignore:
Timestamp:
03/11/2010 07:28:48 AM (2 years ago)
Author:
Xiping.Wang
Message:

[trunk] merged omcollab_zhongzhen2 to r1417, fix #235,#259,#265

Location:
trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk

  • trunk/wiki

  • trunk/wiki/extensions/FCKeditor/FCKeditor.body.php

    r1405 r1418  
    703703                                oFCKeditor.ready = true; 
    704704                        } 
     705                         
     706                        // Added by zhongzhen - 2010.3.11 
     707                        document.getElementById("wpTextbox1___Frame").style.display = "block"; 
    705708                }); 
    706709                return true; 
  • trunk/wiki/extensions/Help/HelpExtention.css

    r1405 r1418  
    2121    font-size: 11px; 
    2222} 
     23 
     24#wpTextbox1___Frame {display: none;} 
    2325 
    2426#closeButton { 
  • trunk/wiki/extensions/Help/Help_Guide.php

    r1405 r1418  
    5858            $(function() { 
    5959                textwidth = $('#editform').width() - $('#shadow').width() - 30; 
    60                 $('#wpTextbox1').css('display', 'block'); 
    6160                $('#wpTextbox1').css('width', textwidth.toString() + 'px'); 
    6261                $('#wpTextbox1___Frame').css('width', textwidth.toString() + 'px'); 
     62                var linktext = $('#toggle_wpTextbox1').html();  
     63                if (linktext.search('Disable') > -1) 
     64                    $('#wpTextbox1___Frame').css('display', 'block'); 
     65                else 
     66                    $('#wpTextbox1').css('display', 'block'); 
    6367            }); 
    6468 
Note: See TracChangeset for help on using the changeset viewer.