Subversion Repositories Applications.papyrus

Rev

Rev 1688 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1688 Rev 1921
Line -... Line 1...
-
 
1
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
1
<!--
2
<!--
2
 * FCKeditor - The text editor for internet
3
 * FCKeditor - The text editor for Internet - http://www.fckeditor.net
3
 * Copyright (C) 2003-2006 Frederico Caldeira Knabben
4
 * Copyright (C) 2003-2008 Frederico Caldeira Knabben
4
 * 
5
 *
5
 * Licensed under the terms of the GNU Lesser General Public License:
6
 * == BEGIN LICENSE ==
6
 * 		http://www.opensource.org/licenses/lgpl-license.php
-
 
7
 * 
7
 *
8
 * For further information visit:
8
 * Licensed under the terms of any of the following licenses at your
9
 * 		http://www.fckeditor.net/
9
 * choice:
10
 * 
10
 *
11
 * "Support Open Source software. What about a donation today?"
11
 *  - GNU General Public License Version 2 or later (the "GPL")
-
 
12
 *    http://www.gnu.org/licenses/gpl.html
12
 * 
13
 *
-
 
14
 *  - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
13
 * File Name: fck_colorselector.html
15
 *    http://www.gnu.org/licenses/lgpl.html
-
 
16
 *
-
 
17
 *  - Mozilla Public License Version 1.1 or later (the "MPL")
14
 * 	Color Selection dialog window.
18
 *    http://www.mozilla.org/MPL/MPL-1.1.html
15
 * 
19
 *
16
 * File Authors:
20
 * == END LICENSE ==
-
 
21
 *
17
 * 		Frederico Caldeira Knabben (fredck@fckeditor.net)
22
 * Color Selection dialog window.
18
-->
23
-->
19
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
-
 
20
<html>
24
<html>
21
	<head>
25
	<head>
22
		<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
26
		<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
23
		<meta name="robots" content="noindex, nofollow" />
27
		<meta name="robots" content="noindex, nofollow" />
24
		<style TYPE="text/css">
28
		<style TYPE="text/css">
Line 28... Line 32...
28
			#selhicolor		{ height: 20px ; width: 74px ; border-width: 1px ; border-style: solid ; }
32
			#selhicolor		{ height: 20px ; width: 74px ; border-width: 1px ; border-style: solid ; }
29
			#selcolor		{ width: 75px ; height: 20px ; margin-top: 0px ; margin-bottom: 7px ; }
33
			#selcolor		{ width: 75px ; height: 20px ; margin-top: 0px ; margin-bottom: 7px ; }
30
			#btnClear		{ width: 75px ; height: 22px ; margin-bottom: 6px ; }
34
			#btnClear		{ width: 75px ; height: 22px ; margin-bottom: 6px ; }
31
			.ColorCell		{ height: 15px ; width: 15px ; }
35
			.ColorCell		{ height: 15px ; width: 15px ; }
32
		</style>
36
		</style>
-
 
37
		<script src="common/fck_dialog_common.js" type="text/javascript"></script>
33
		<script type="text/javascript">
38
		<script type="text/javascript">
Line 34... Line 39...
34
		
39
 
Line 35... Line 40...
35
var oEditor = window.parent.InnerDialogLoaded() ;
40
var oEditor = window.parent.InnerDialogLoaded() ;
Line 129... Line 134...
129
	catch (e) { Clear() ; }
134
	catch (e) { Clear() ; }
130
}
135
}
Line 131... Line 136...
131
 
136
 
132
function Ok()
137
function Ok()
133
{
138
{
134
	if ( typeof(window.parent.dialogArguments.CustomValue) == 'function' )
139
	if ( typeof(window.parent.Args().CustomValue) == 'function' )
Line 135... Line 140...
135
		window.parent.dialogArguments.CustomValue( document.getElementById('selcolor').value ) ;
140
		window.parent.Args().CustomValue( document.getElementById('selcolor').value ) ;
136
 
141
 
137
	return true ;
142
	return true ;
138
}
143
}