diff options
Diffstat (limited to 'httemplate/elements/fckeditor/editor/dialog/fck_flash.html')
| -rw-r--r-- | httemplate/elements/fckeditor/editor/dialog/fck_flash.html | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/httemplate/elements/fckeditor/editor/dialog/fck_flash.html b/httemplate/elements/fckeditor/editor/dialog/fck_flash.html index be529e34e..3428826a3 100644 --- a/httemplate/elements/fckeditor/editor/dialog/fck_flash.html +++ b/httemplate/elements/fckeditor/editor/dialog/fck_flash.html @@ -1,7 +1,7 @@ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<!--
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
- * Copyright (C) 2003-2007 Frederico Caldeira Knabben
+ * Copyright (C) 2003-2010 Frederico Caldeira Knabben
*
* == BEGIN LICENSE ==
*
@@ -28,7 +28,11 @@ <meta content="noindex, nofollow" name="robots">
<script src="common/fck_dialog_common.js" type="text/javascript"></script>
<script src="fck_flash/fck_flash.js" type="text/javascript"></script>
- <link href="common/fck_dialog_common.css" type="text/css" rel="stylesheet">
+ <script type="text/javascript">
+
+document.write( FCKTools.GetStyleHtml( GetCommonDialogCss() ) ) ;
+
+ </script>
</head>
<body scroll="no" style="OVERFLOW: hidden">
<div id="divInfo">
@@ -55,12 +59,12 @@ <TR>
<TD nowrap>
<span fckLang="DlgImgWidth">Width</span><br>
- <input id="txtWidth" class="FCK__FieldNumeric" type="text" size="3">
+ <input id="txtWidth" onkeypress="return IsDigit(event);" type="text" size="3">
</TD>
<TD> </TD>
<TD>
<span fckLang="DlgImgHeight">Height</span><br>
- <input id="txtHeight" class="FCK__FieldNumeric" type="text" size="3">
+ <input id="txtHeight" onkeypress="return IsDigit(event);" type="text" size="3">
</TD>
</TR>
</table>
@@ -92,7 +96,9 @@ <input id="txtUploadFile" style="WIDTH: 100%" type="file" size="40" name="NewFile" /><br />
<br />
<input id="btnUpload" type="submit" value="Send it to the Server" fckLang="DlgLnkBtnUpload" />
- <iframe name="UploadWindow" style="DISPLAY: none" src="javascript:void(0)"></iframe>
+ <script type="text/javascript">
+ document.write( '<iframe name="UploadWindow" style="DISPLAY: none" src="' + FCKTools.GetVoidUrl() + '"><\/iframe>' ) ;
+ </script>
</form>
</div>
<div id="divAdvanced" style="DISPLAY: none">
|
