Ticket #10438: inline_focus.html

File inline_focus.html, 6.0 KB (added by Piotrek Koszuliński, 11 years ago)
Line 
1<!DOCTYPE html>
2<!--
3Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
4For licensing, see LICENSE.html or http://ckeditor.com/license
5-->
6<html>
7<head>
8        <title>Inline Editing by Code &mdash; CKEditor Sample</title>
9        <meta charset="utf-8">
10        <script src="../ckeditor.js"></script>
11        <link href="sample.css" rel="stylesheet">
12        <style>
13
14                #editable
15                {
16                        padding: 10px;
17                        float: left;
18                }
19
20        </style>
21</head>
22<body>
23        <h1 class="samples">
24                <a href="index.html">CKEditor Samples</a> &raquo; Inline Editing by Code
25        </h1>
26        <div class="description">
27                <p>
28                        This sample shows how to create an inline editor instance of CKEditor. It is created
29                        with a JavaScript call using the following code:
30                </p>
31<pre class="samples">
32// This property tells CKEditor to not activate every element with contenteditable=true element.
33CKEDITOR.disableAutoInline = true;
34
35var editor = CKEDITOR.inline( document.getElementById( 'editable' ) );
36</pre>
37                <p>
38                        Note that <code>editable</code> in the code above is the <code>id</code>
39                        attribute of the <code>&lt;div&gt;</code> element to be converted into an inline instance.
40                </p>
41        </div>
42        <div id="editable" contenteditable="true">
43                <h1><img alt="Saturn V carrying Apollo 11" class="right" src="assets/sample.jpg" /> Apollo 11</h1>
44
45                <p><b>Apollo 11</b> was the spaceflight that landed the first humans, Americans <a href="http://en.wikipedia.org/wiki/Neil_Armstrong" title="Neil Armstrong">Neil Armstrong</a> and <a href="http://en.wikipedia.org/wiki/Buzz_Aldrin" title="Buzz Aldrin">Buzz Aldrin</a>, on the Moon on July 20, 1969, at 20:18 UTC. Armstrong became the first to step onto the lunar surface 6 hours later on July 21 at 02:56 UTC.</p>
46
47                <p>Armstrong spent about <s>three and a half</s> two and a half hours outside the spacecraft, Aldrin slightly less; and together they collected 47.5 pounds (21.5&nbsp;kg) of lunar material for return to Earth. A third member of the mission, <a href="http://en.wikipedia.org/wiki/Michael_Collins_(astronaut)" title="Michael Collins (astronaut)">Michael Collins</a>, piloted the <a href="http://en.wikipedia.org/wiki/Apollo_Command/Service_Module" title="Apollo Command/Service Module">command</a> spacecraft alone in lunar orbit until Armstrong and Aldrin returned to it for the trip back to Earth.</p>
48
49                <h2>Broadcasting and <em>quotes</em> <a id="quotes" name="quotes"></a></h2>
50
51                <p>Broadcast on live TV to a world-wide audience, Armstrong stepped onto the lunar surface and described the event as:</p>
52
53                <blockquote>
54                        <p>One small step for [a] man, one giant leap for mankind.</p>
55                </blockquote>
56
57                <p>Apollo 11 effectively ended the <a href="http://en.wikipedia.org/wiki/Space_Race" title="Space Race">Space Race</a> and fulfilled a national goal proposed in 1961 by the late U.S. President <a href="http://en.wikipedia.org/wiki/John_F._Kennedy" title="John F. Kennedy">John F. Kennedy</a> in a speech before the United States Congress:</p>
58
59                <blockquote>
60                        <p>[...] before this decade is out, of landing a man on the Moon and returning him safely to the Earth.</p>
61                </blockquote>
62
63                <h2>Technical details <a id="tech-details" name="tech-details"></a></h2>
64
65                <table align="right" border="1" bordercolor="#ccc" cellpadding="5" cellspacing="0" style="border-collapse:collapse;margin:10px 0 10px 15px;">
66                        <caption><strong>Mission crew</strong></caption>
67                        <thead>
68                        <tr>
69                                <th scope="col">Position</th>
70                                <th scope="col">Astronaut</th>
71                        </tr>
72                        </thead>
73                        <tbody>
74                        <tr>
75                                <td>Commander</td>
76                                <td>Neil A. Armstrong</td>
77                        </tr>
78                        <tr>
79                                <td>Command Module Pilot</td>
80                                <td>Michael Collins</td>
81                        </tr>
82                        <tr>
83                                <td>Lunar Module Pilot</td>
84                                <td>Edwin &quot;Buzz&quot; E. Aldrin, Jr.</td>
85                        </tr>
86                        </tbody>
87                </table>
88
89                <p>Launched by a <strong>Saturn V</strong> rocket from <a href="http://en.wikipedia.org/wiki/Kennedy_Space_Center" title="Kennedy Space Center">Kennedy Space Center</a> in Merritt Island, Florida on July 16, Apollo 11 was the fifth manned mission of <a href="http://en.wikipedia.org/wiki/NASA" title="NASA">NASA</a>&#39;s Apollo program. The Apollo spacecraft had three parts:</p>
90
91                <ol>
92                        <li><strong>Command Module</strong> with a cabin for the three astronauts which was the only part which landed back on Earth</li>
93                        <li><strong>Service Module</strong> which supported the Command Module with propulsion, electrical power, oxygen and water</li>
94                        <li><strong>Lunar Module</strong> for landing on the Moon.</li>
95                </ol>
96
97                <p>After being sent to the Moon by the Saturn V&#39;s upper stage, the astronauts separated the spacecraft from it and travelled for three days until they entered into lunar orbit. Armstrong and Aldrin then moved into the Lunar Module and landed in the <a href="http://en.wikipedia.org/wiki/Mare_Tranquillitatis" title="Mare Tranquillitatis">Sea of Tranquility</a>. They stayed a total of about 21 and a half hours on the lunar surface. After lifting off in the upper part of the Lunar Module and rejoining Collins in the Command Module, they returned to Earth and landed in the <a href="http://en.wikipedia.org/wiki/Pacific_Ocean" title="Pacific Ocean">Pacific Ocean</a> on July 24.</p>
98
99                <hr />
100                <p style="text-align: right;"><small>Source: <a href="http://en.wikipedia.org/wiki/Apollo_11">Wikipedia.org</a></small></p>
101        </div>
102        <script>
103
104                // We need to turn off the automatic editor creation first.
105                CKEDITOR.disableAutoInline = true;
106
107                var editor = CKEDITOR.inline( 'editable' );
108
109                editor.on( 'blur', function() { console.log( 'EDITOR#BLUR' ) } );
110                editor.on( 'focus', function() { console.log( 'EDITOR#FOCUS' ) } );
111                function setData() {
112                        setTimeout( function() {
113                                editor.setData( '<h1>foo</h1><p>bar</p>' );
114                        }, 3000 );
115                }
116
117        </script>
118        <div id="footer">
119                <hr>
120                <p contenteditable="true">
121                        CKEditor - The text editor for the Internet - <a class="samples" href="http://ckeditor.com/">
122                                http://ckeditor.com</a>
123                </p>
124                <p id="copy">
125                        Copyright &copy; 2003-2013, <a class="samples" href="http://cksource.com/">CKSource</a>
126                        - Frederico Knabben. All rights reserved.
127                </p>
128        </div>
129</body>
130</html>
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy