1 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
|
---|
2 | <!--
|
---|
3 | * FCKeditor - The text editor for internet
|
---|
4 | * Copyright (C) 2003-2006 Frederico Caldeira Knabben
|
---|
5 | *
|
---|
6 | * Licensed under the terms of the GNU Lesser General Public License:
|
---|
7 | * http://www.opensource.org/licenses/lgpl-license.php
|
---|
8 | *
|
---|
9 | * For further information visit:
|
---|
10 | * http://www.fckeditor.net/
|
---|
11 | *
|
---|
12 | * "Support Open Source software. What about a donation today?"
|
---|
13 | *
|
---|
14 | * File Name: fck_universalkey.html
|
---|
15 | * Unicode Keyboard dialog window.
|
---|
16 | *
|
---|
17 | * File Authors:
|
---|
18 | * Abdul-Aziz Al-Oraij (top7up@hotmail.com)
|
---|
19 | * Michel Staelens
|
---|
20 | * Bernadette Cierzniak
|
---|
21 | * Frederico Caldeira Knabben (fredck@fckeditor.net)
|
---|
22 | -->
|
---|
23 | <html>
|
---|
24 | <head>
|
---|
25 | <title>Universal Keyboard</title>
|
---|
26 | <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
---|
27 | <meta content="noindex, nofollow" name="robots">
|
---|
28 | <link rel="stylesheet" type="text/css" href="fck_universalkey/fck_universalkey.css" />
|
---|
29 | <script type="text/javascript">
|
---|
30 |
|
---|
31 | var oEditor = window.parent.InnerDialogLoaded() ;
|
---|
32 |
|
---|
33 | window.onload = function()
|
---|
34 | {
|
---|
35 | document.body.style.padding = '0px' ;
|
---|
36 |
|
---|
37 | // First of all, translate the dialog box texts
|
---|
38 | oEditor.FCKLanguageManager.TranslatePage(document) ;
|
---|
39 |
|
---|
40 | window.parent.SetOkButton( true ) ;
|
---|
41 | window.parent.SetAutoSize( true ) ;
|
---|
42 | }
|
---|
43 |
|
---|
44 | function Ok()
|
---|
45 | {
|
---|
46 | var oArea = document.getElementById( 'uni_area' ) ;
|
---|
47 |
|
---|
48 | if ( oArea.value.length > 0 )
|
---|
49 | oEditor.FCK.InsertHtml( oArea.value ) ;
|
---|
50 |
|
---|
51 | return true ;
|
---|
52 | }
|
---|
53 |
|
---|
54 | </script>
|
---|
55 | </head>
|
---|
56 | <body style="OVERFLOW: hidden" scroll="no">
|
---|
57 | <textarea id="uni_area" cols="40" rows="4" style="width:100%;height:60px;"></textarea>
|
---|
58 | <script type="text/javascript" src="fck_universalkey/data.js"></script>
|
---|
59 | <script type="text/javascript" src="fck_universalkey/diacritic.js"></script>
|
---|
60 | <script type="text/javascript" src="fck_universalkey/dialogue.js"></script>
|
---|
61 | <script type="text/javascript" src="fck_universalkey/multihexa.js"></script>
|
---|
62 | </body>
|
---|
63 | </html>
|
---|