0byt3m1n1
Path:
/
data
/
applications
/
aps
/
phpwiki
/
1.4.0-0
/
standard
/
htdocs
/
themes
/
default
/
Wikiwyg
/
Wikiwyg
/
[
Home
]
File: HTML.js
/*============================================================================== This Wikiwyg mode supports a simple HTML editor COPYRIGHT: Copyright (c) 2005 Socialtext Corporation 655 High Street Palo Alto, CA 94301 U.S.A. All rights reserved. Wikiwyg is free software. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. http://www.gnu.org/copyleft/lesser.txt =============================================================================*/ proto = new Subclass('Wikiwyg.HTML', 'Wikiwyg.Mode'); proto.classtype = 'html'; proto.modeDescription = 'HTML'; proto.initializeObject = function() { this.div = document.createElement('div'); this.textarea = document.createElement('textarea'); this.div.appendChild(this.textarea); } proto.enableThis = function() { this.superfunc('enableThis').call(this); this.textarea.style.width = '100%'; this.textarea.style.height = '200px'; } proto.fromHtml = function(html) { this.textarea.value = html; } proto.toHtml = function(func) { func(this.textarea.value); } proto.process_command = function(command) {};