plugin.js 665 B

123456789101112131415161718192021222324
  1. /**
  2. * Copyright (c) Tiny Technologies, Inc. All rights reserved.
  3. * Licensed under the LGPL or a commercial license.
  4. * For LGPL see License.txt in the project root for license information.
  5. * For commercial licenses see https://www.tiny.cloud/
  6. *
  7. * Version: 5.0.1 (2019-02-21)
  8. */
  9. (function () {
  10. var contextmenu = (function () {
  11. 'use strict';
  12. var global = tinymce.util.Tools.resolve('tinymce.PluginManager');
  13. global.add('contextmenu', function () {
  14. console.warn('Context menu plugin is now built in to the core editor, please remove it from your editor configuration');
  15. });
  16. function Plugin () {
  17. }
  18. return Plugin;
  19. }());
  20. })();