start.frag 681 B

123456789101112131415161718192021222324252627
  1. /**
  2. * @license Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved.
  3. * For licensing, see LICENSE.md.
  4. */
  5. // This is the code that will precede the compiled source code in the ckeditor.js build.
  6. //
  7. // The following are the parts that compose the build:
  8. //
  9. // * start.frag
  10. // * Almond.js source code
  11. // * CKEditor source code
  12. // * end.frag
  13. ( function ( root, factory ) {
  14. // Register the CKEDITOR global.
  15. root.CKEDITOR = factory();
  16. // Make the build an AMD module.
  17. if ( typeof define == 'function' && define.amd ) {
  18. define( [], function() {
  19. return root.CKEDITOR;
  20. } );
  21. }
  22. } )( this, function () {
  23. /************************ start.frag END */