Proyectos de Subversion LeadersLinked - Backend

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
16825 efrain 1
<!DOCTYPE html>
2
<!--
3
Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved.
4
For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
5
-->
6
<html lang="en">
7
<head>
8
	<meta charset="utf-8">
9
	<title>TAB Key-Based Navigation &mdash; CKEditor Sample</title>
10
	<script src="../../ckeditor.js"></script>
11
	<link href="sample.css" rel="stylesheet">
12
	<meta name="description" content="Try the latest sample of CKEditor 4 and learn more about customizing your WYSIWYG editor with endless possibilities.">
13
	<style>
14
 
15
		.cke_focused,
16
		.cke_editable.cke_focused
17
		{
18
			outline: 3px dotted blue !important;
19
			*border: 3px dotted blue !important;	/* For IE7 */
20
		}
21
 
22
	</style>
23
	<script>
24
 
25
		CKEDITOR.on( 'instanceReady', function( evt ) {
26
			var editor = evt.editor;
27
			editor.setData( 'This editor has it\'s tabIndex set to <strong>' + editor.tabIndex + '</strong>' );
28
 
29
			// Apply focus class name.
30
			editor.on( 'focus', function() {
31
				editor.container.addClass( 'cke_focused' );
32
			});
33
			editor.on( 'blur', function() {
34
				editor.container.removeClass( 'cke_focused' );
35
			});
36
 
37
			// Put startup focus on the first editor in tab order.
38
			if ( editor.tabIndex == 1 )
39
				editor.focus();
40
		});
41
 
42
	</script>
43
</head>
44
<body>
45
	<h1 class="samples">
46
		<a href="index.html">CKEditor Samples</a> &raquo; TAB Key-Based Navigation
47
	</h1>
48
	<div class="warning deprecated">
49
		This sample is not maintained anymore. Check out its <a href="https://ckeditor.com/docs/ckeditor4/latest/examples/tabindex.html">brand new version in CKEditor Examples</a>.
50
	</div>
51
	<div class="description">
52
		<p>
53
			This sample shows how tab key navigation among editor instances is
54
			affected by the <code>tabIndex</code> attribute from
55
			the original page element. Use TAB key to move between the editors.
56
		</p>
57
	</div>
58
	<p>
59
		<textarea class="ckeditor" cols="80" id="editor4" rows="10" tabindex="1"></textarea>
60
	</p>
61
	<div class="ckeditor" contenteditable="true" id="editor1" tabindex="4"></div>
62
	<p>
63
		<textarea class="ckeditor" cols="80" id="editor2" rows="10" tabindex="2"></textarea>
64
	</p>
65
	<p>
66
		<textarea class="ckeditor" cols="80" id="editor3" rows="10" tabindex="3"></textarea>
67
	</p>
68
	<div id="footer">
69
		<hr>
70
		<p>
71
			CKEditor - The text editor for the Internet - <a class="samples" href="https://ckeditor.com/">https://ckeditor.com</a>
72
		</p>
73
		<p id="copy">
74
			Copyright &copy; 2003-2021, <a class="samples" href="https://cksource.com/">CKSource</a> - Frederico
75
			Knabben. All rights reserved.
76
		</p>
77
	</div>
78
</body>
79
</html>