fckdebug.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: fckdebug.js
  12.  *  Debug window control and operations.
  13.  * 
  14.  * File Authors:
  15.  *  Frederico Caldeira Knabben (fredck@fckeditor.net)
  16.  */
  17. var FCKDebug = new Object() ;
  18. if ( FCKConfig.Debug )
  19. {
  20. FCKDebug.Output = function( message, color )
  21. {
  22. if ( ! FCKConfig.Debug ) return ;
  23. if ( message != null && isNaN( message ) )
  24. message = message.replace(/</g, "&lt;") ;
  25. if ( !this.DebugWindow || this.DebugWindow.closed )
  26. this.DebugWindow = window.open( 'fckdebug.html', 'FCKeditorDebug', 'menubar=no,scrollbars=no,resizable=yes,location=no,toolbar=no,width=600,height=500', true ) ;
  27. if ( this.DebugWindow.Output)
  28. this.DebugWindow.Output( message, color ) ;
  29. }
  30. }
  31. else
  32. FCKDebug.Output = function() {}