plugin.js 330 B

1234567891011121314151617181920
  1. /**
  2. * @license Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved.
  3. * For licensing, see LICENSE.md.
  4. */
  5. 'use strict';
  6. /**
  7. * The base class for CKEditor plugin classes.
  8. *
  9. * @class Plugin
  10. */
  11. CKEDITOR.define( function() {
  12. function Plugin( editor ) {
  13. this.editor = editor;
  14. }
  15. return Plugin;
  16. } );