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

Jsp/Servlet

开发平台:

Java

  1. var FCKSpellCheckCommand = function()
  2. {
  3. this.Name = 'SpellCheck' ;
  4. this.IsEnabled = ( FCKConfig.SpellChecker == 'SpellerPages' ) ;
  5. }
  6. FCKSpellCheckCommand.prototype.Execute = function()
  7. {
  8. FCKDialog.OpenDialog( 'FCKDialog_SpellCheck', 'Spell Check', 'dialog/fck_spellerpages.html', 440, 480 ) ;
  9. }
  10. FCKSpellCheckCommand.prototype.GetState = function()
  11. {
  12. return this.IsEnabled ? FCK_TRISTATE_OFF : FCK_TRISTATE_DISABLED ;
  13. }