Mercurial > hg > rr-repo
annotate sites/all/libraries/ckeditor/_samples/adobeair/sample.html @ 0:ff03f76ab3fe
initial version
author | danieleb <danielebarchiesi@me.com> |
---|---|
date | Wed, 21 Aug 2013 18:51:11 +0100 |
parents | |
children |
rev | line source |
---|---|
danielebarchiesi@0 | 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
danielebarchiesi@0 | 2 <!-- |
danielebarchiesi@0 | 3 Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. |
danielebarchiesi@0 | 4 For licensing, see LICENSE.html or http://ckeditor.com/license |
danielebarchiesi@0 | 5 --> |
danielebarchiesi@0 | 6 <html xmlns="http://www.w3.org/1999/xhtml"> |
danielebarchiesi@0 | 7 <head> |
danielebarchiesi@0 | 8 <title>Replace Textarea by Code - CKEditor Sample</title> |
danielebarchiesi@0 | 9 <meta content="text/html; charset=utf-8" http-equiv="content-type" /> |
danielebarchiesi@0 | 10 <script type="text/javascript" src="../../ckeditor.js"></script> |
danielebarchiesi@0 | 11 <link href="../sample.css" rel="stylesheet" type="text/css" /> |
danielebarchiesi@0 | 12 <style type="text/css"> |
danielebarchiesi@0 | 13 body { margin: 10px ; } |
danielebarchiesi@0 | 14 </style></head> |
danielebarchiesi@0 | 15 <body> |
danielebarchiesi@0 | 16 <h1 class="samples"> |
danielebarchiesi@0 | 17 CKEditor - Adobe AIR Sample |
danielebarchiesi@0 | 18 </h1> |
danielebarchiesi@0 | 19 <p> |
danielebarchiesi@0 | 20 This is a sample HTML/JavaScript Adobe AIR application with CKEditor with default features. |
danielebarchiesi@0 | 21 </p> |
danielebarchiesi@0 | 22 <p> |
danielebarchiesi@0 | 23 <textarea cols="80" id="editor1" name="editor1" rows="10"><p>This is some <strong>sample text</strong>. You are using <a href="http://ckeditor.com/">CKEditor</a>.</p></textarea> |
danielebarchiesi@0 | 24 <script type="text/javascript"> |
danielebarchiesi@0 | 25 //<![CDATA[ |
danielebarchiesi@0 | 26 |
danielebarchiesi@0 | 27 // Replace the <textarea id="editor"> with an CKEditor |
danielebarchiesi@0 | 28 // instance, using default configurations. |
danielebarchiesi@0 | 29 CKEDITOR.replace( 'editor1' ); |
danielebarchiesi@0 | 30 |
danielebarchiesi@0 | 31 //]]> |
danielebarchiesi@0 | 32 </script> |
danielebarchiesi@0 | 33 </p> |
danielebarchiesi@0 | 34 <div id="footer" style="position:absolute;bottom:0;left:0;right:0;width:100%;padding-bottom:10px;"> |
danielebarchiesi@0 | 35 <hr /> |
danielebarchiesi@0 | 36 <p> |
danielebarchiesi@0 | 37 CKEditor - The text editor for Internet - <a class="samples" href="#" onclick="window.runtime.flash.net.navigateToURL(new window.runtime.flash.net.URLRequest('http://ckeditor.com/'));return false;">http://ckeditor.com</a> |
danielebarchiesi@0 | 38 </p> |
danielebarchiesi@0 | 39 <p id="copy"> |
danielebarchiesi@0 | 40 Copyright © 2003-2013, <a class="samples" href="#" onclick="window.runtime.flash.net.navigateToURL(new window.runtime.flash.net.URLRequest('http://cksource.com/'));return false;">CKSource</a> - Frederico |
danielebarchiesi@0 | 41 Knabben. All rights reserved. |
danielebarchiesi@0 | 42 </p> |
danielebarchiesi@0 | 43 </div> |
danielebarchiesi@0 | 44 </body> |
danielebarchiesi@0 | 45 </html> |