- Timestamp:
- 2008-05-10 19:09:39 (6 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
FCKeditor/trunk/editor/filemanager/browser/default/frmresourcetype.html
r1565 r1985 24 24 <html> 25 25 <head> 26 <title>Available types</title> 26 27 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> 27 28 <link href="browser.css" type="text/css" rel="stylesheet"> 28 29 <script type="text/javascript" src="js/common.js"></script> 29 <script language="javascript">30 <script type="text/javascript"> 30 31 31 32 function SetResourceType( type ) … … 43 44 window.onload = function() 44 45 { 46 var oCombo = document.getElementById('cmbType') ; 47 oCombo.innerHTML = '' ; 45 48 for ( var i = 0 ; i < aTypes.length ; i++ ) 46 49 { 47 50 if ( oConnector.ShowAllTypes || aTypes[i][0] == oConnector.ResourceType ) 48 AddSelectOption( document.getElementById('cmbType'), aTypes[i][1], aTypes[i][0] ) ;51 AddSelectOption( oCombo, aTypes[i][1], aTypes[i][0] ) ; 49 52 } 50 53 } … … 52 55 </script> 53 56 </head> 54 <body bottomMargin="0" topMargin="0">55 <table height="100%" cellSpacing="0" cellPadding="0" width="100%" border="0">57 <body> 58 <table class="fullHeight" cellSpacing="0" cellPadding="0" width="100%" border="0"> 56 59 <tr> 57 60 <td nowrap> 58 61 Resource Type<BR> 59 62 <select id="cmbType" style="WIDTH: 100%" onchange="SetResourceType(this.value);"> 63 <option> 60 64 </select> 61 65 </td>