fckpasteplaintextcommand.js
上传用户:wlfwy2004
上传日期:2016-12-12
资源大小:33978k
文件大小:1k
源码类别:

Jsp/Servlet

开发平台:

Java

  1. /*
  2.  * FCKeditor - The text editor for internet
  3.  * Copyright (C) 2003-2005 Frederico Caldeira Knabben
  4.  * 
  5.  * Licensed under the terms of the GNU Lesser General Public License:
  6.  *  http://www.opensource.org/licenses/lgpl-license.php
  7.  * 
  8.  * For further information visit:
  9.  *  http://www.fckeditor.net/
  10.  * 
  11.  * File Name: fckpasteplaintextcommand.js
  12.  *  FCKPastePlainTextCommand Class: represents the 
  13.  *  "Paste as Plain Text" command.
  14.  * 
  15.  * File Authors:
  16.  *  Frederico Caldeira Knabben (fredck@fckeditor.net)
  17.  */
  18. var FCKPastePlainTextCommand = function() 
  19. {
  20. this.Name = 'PasteText' ;
  21. }
  22. FCKPastePlainTextCommand.prototype.Execute = function()
  23. {
  24. FCK.PasteAsPlainText() ;
  25. }
  26. FCKPastePlainTextCommand.prototype.GetState = function()
  27. {
  28. return FCK.GetNamedCommandState( 'Paste' ) ;
  29. }