source: trunk/phpgwapi/js/ckeditor/_source/core/dom/comment.js @ 2862

Revision 2862, 690 bytes checked in by rodsouza, 14 years ago (diff)

Ticket #663 - Atualizando e centralizando o CKEditor (v. 3.2.1)

Line 
1/*
2Copyright (c) 2003-2010, CKSource - Frederico Knabben. All rights reserved.
3For licensing, see LICENSE.html or http://ckeditor.com/license
4*/
5
6/**
7 * @fileOverview Defines the {@link CKEDITOR.dom.comment} class, which represents
8 *              a DOM comment node.
9 */
10
11CKEDITOR.dom.comment = CKEDITOR.tools.createClass(
12{
13        base : CKEDITOR.dom.node,
14
15        $ : function( text, ownerDocument )
16        {
17                if ( typeof text == 'string' )
18                        text = ( ownerDocument ? ownerDocument.$ : document ).createComment( text );
19
20                this.base( text );
21        },
22
23        proto :
24        {
25                type : CKEDITOR.NODE_COMMENT,
26
27                getOuterHtml : function()
28                {
29                        return '<!--' + this.$.nodeValue + '-->';
30                }
31        }
32});
Note: See TracBrowser for help on using the repository browser.