PHP Classes

File: public/js/tinymce/src/plugins/spellchecker/src/main/js/alien/DetectProPlugin.js

Recommend this page to a friend!
  Classes of Abed Nego Ragil Putra   GoLavaCMS   public/js/tinymce/src/plugins/spellchecker/src/main/js/alien/DetectProPlugin.js   Download  
File: public/js/tinymce/src/plugins/spellchecker/src/main/js/alien/DetectProPlugin.js
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: GoLavaCMS
Publish content on Web pages with SEO support
Author: By
Last change:
Date: 6 years ago
Size: 1,056 bytes
 

Contents

Class file image Download
/** * DetectProPlugin.js * * Released under LGPL License. * Copyright (c) 1999-2017 Ephox Corp. All rights reserved * * License: http://www.tinymce.com/license * Contributing: http://www.tinymce.com/contributing */ define( 'tinymce.plugins.spellchecker.alien.DetectProPlugin', [ 'global!window', 'tinymce.core.PluginManager' ], function (window, PluginManager) { var hasProPlugin = function (editor) { // draw back if power version is requested and registered if (/(^|[ ,])tinymcespellchecker([, ]|$)/.test(editor.settings.plugins) && PluginManager.get('tinymcespellchecker')) { /*eslint no-console:0 */ if (typeof window.console !== "undefined" && window.console.log) { window.console.log( "Spell Checker Pro is incompatible with Spell Checker plugin! " + "Remove 'spellchecker' from the 'plugins' option." ); } return true; } else { return false; } }; return { hasProPlugin: hasProPlugin }; } );