-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
39 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<div style="padding: 3000px 3000px 3000px 3000px;"> | ||
<textarea cols="80" id="editor1" name="editor1" rows="10"> | ||
<p><strong>Apollo 11</strong> was the spaceflight that landed the first humans, Americans Neil Armstrong and Buzz Aldrin, 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><p>Armstrong spent about three and a half two and a half hours outside the spacecraft, Aldrin slightly less; and together they collected 47.5 pounds (21.5 kg) of lunar material for return to Earth. A third member of the mission, Michael Collins, piloted the command spacecraft alone in lunar orbit until Armstrong and Aldrin returned to it for the trip back to Earth.</p><p>Broadcasting and <em>quotes</em> </p><p>Broadcast on live TV to a world-wide audience, Armstrong stepped onto the lunar surface and described the event as:</p><p>One small step for [a] man, one giant leap for mankind.</p><p>Apollo 11 effectively ended the Space Race and fulfilled a national goal proposed in 1961 by the late U.S. President John F. Kennedy in a speech before the United States Congress:</p><p>[...] before this decade is out, of landing a man on the Moon and returning him safely to the Earth.</p><p>Technical details </p><p><strong>Mission crew</strong></p><p>PositionAstronaut</p><p>CommanderNeil A. Armstrong</p><p>Command Module PilotMichael Collins</p><p>Lunar Module PilotEdwin "Buzz" E. Aldrin, Jr.</p><p>Launched by a <strong>Saturn V</strong> rocket from Kennedy Space Center in Merritt Island, Florida on July 16, Apollo 11 was the fifth manned mission of NASA's Apollo program. The Apollo spacecraft had three parts:</p><p><strong>Command Module</strong> with a cabin for the three astronauts which was the only part which landed back on Earth</p><p><strong>Service Module</strong> which supported the Command Module with propulsion, electrical power, oxygen and water</p><p><strong>Lunar Module</strong> for landing on the Moon.</p><p>After being sent to the Moon by the Saturn V'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 Sea of Tranquility. 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 Pacific Ocean on July 24.</p><p>Source: Wikipedia.org</p> | ||
</textarea> | ||
<script> | ||
var editor = CKEDITOR.replace( 'editor1', { | ||
extraPlugins: 'notification', | ||
width: 650, | ||
toolbar: [ [ 'Undo', 'Redo' ], [ 'Bold', 'Italic', 'Underline' ] ] | ||
} ); | ||
|
||
window.scrollTo( 2950, 2950 ); | ||
</script> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
@bender-tags: 4.5.0 | ||
@bender-ui: collapsed | ||
@bender-ckeditor-plugins: wysiwygarea, toolbar, undo, basicstyles, notification, floatingspace | ||
@bender-include: _helpers/manualplayground.js | ||
|
||
Play with notifications using console, e.g.: | ||
|
||
```js | ||
var editor = CKEDITOR.instances.editor1; | ||
|
||
var warning = editor.showNotification( 'Foo', 'warning' ); | ||
warning.hide(); | ||
|
||
var progress = editor.showNotification( 'Bar', 'progress', 0.1 ); | ||
progress.update( { progress: 0.5 } ); | ||
progress.update( { type: 'success', message: 'Done!', important: true } ); | ||
``` | ||
Check if API is complete and consistent. | ||
|
||
**Note:** if you close notification it will be shown again if update is important. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters