1 | <html> |
---|
2 | <HEAD><TITLE>CK Editor showModalDialog problem</TITLE> |
---|
3 | <SCRIPT language=javascript> |
---|
4 | |
---|
5 | |
---|
6 | |
---|
7 | function showEditor() |
---|
8 | { |
---|
9 | var xPopUpUrl="ckeditor_test.html"; |
---|
10 | var aHeight= screen.availHeight-500; |
---|
11 | var aWidth= screen.availWidth-500; |
---|
12 | window.showModalDialog(xPopUpUrl,self,"dialogHeight: " + aHeight + "px; dialogWidth: " + aWidth + "px; center: yes; resizable: no; scroll:auto; status: no;"); |
---|
13 | |
---|
14 | |
---|
15 | } |
---|
16 | |
---|
17 | </SCRIPT> |
---|
18 | </HEAD> |
---|
19 | <BODY><INPUT onclick=showEditor() value=showModalDialog type=button> </BODY> |
---|
20 | </html> |
---|