1 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
---|
2 | <html xmlns="http://www.w3.org/1999/xhtml"> |
---|
3 | <head> |
---|
4 | <title>FCKeditor - FitWindow Bug</title> |
---|
5 | <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> |
---|
6 | <meta name="robots" content="noindex, nofollow" /> |
---|
7 | <script type="text/javascript" src="/fckeditor/fckeditor.js"></script> |
---|
8 | </head> |
---|
9 | <body> |
---|
10 | <h1> |
---|
11 | FCKeditor - FitWindow Bug |
---|
12 | </h1> |
---|
13 | <div> |
---|
14 | The FitWindow button throws an error in IE because there is a <input name="style"> |
---|
15 | inside the editor form. |
---|
16 | </div> |
---|
17 | <hr /> |
---|
18 | <form action="sampleposteddata.asp" method="post" target="_blank"> |
---|
19 | <input type="hidden" name="style" value="XXX" /> |
---|
20 | <script type="text/javascript"> |
---|
21 | <!-- |
---|
22 | var oFCKeditor = new FCKeditor( 'FCKeditor1' ) ; |
---|
23 | oFCKeditor.BasePath = '/fckeditor/' ; |
---|
24 | oFCKeditor.Create() ; |
---|
25 | //--> |
---|
26 | </script> |
---|
27 | <br /> |
---|
28 | <input type="submit" value="Submit" /> |
---|
29 | </form> |
---|
30 | </body> |
---|
31 | </html> |
---|