fckeditorapi.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: fckeditorapi.js
  12.  *  Create the FCKeditorAPI object that is available as a global object in
  13.  *  the page where the editor is placed in.
  14.  * 
  15.  * File Authors:
  16.  *  Frederico Caldeira Knabben (fredck@fckeditor.net)
  17.  */
  18. var FCKeditorAPI ;
  19. function FCKeditorAPI_GetInstance( instanceName )
  20. {
  21. return this.__Instances[ instanceName ] ;
  22. }
  23. if ( !window.parent.FCKeditorAPI )
  24. {
  25. // Make the FCKeditorAPI object available in the parent window.
  26. FCKeditorAPI = window.parent.FCKeditorAPI = new Object() ;
  27. FCKeditorAPI.__Instances = new Object() ;
  28. // Set the current version.
  29. FCKeditorAPI.Version = '2.0' ;
  30. // Function used to get a instance of an existing editor present in the 
  31. // page.
  32. FCKeditorAPI.GetInstance = FCKeditorAPI_GetInstance ;
  33. }
  34. else
  35. FCKeditorAPI = window.parent.FCKeditorAPI ;
  36. // Add the current instance to the FCKeditorAPI's instances collection.
  37. FCKeditorAPI.__Instances[ FCK.Name ] = FCK ;