8
0

extensions.js 439 B

123456789101112131415161718
  1. /**
  2. * @license Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved.
  3. * For licensing, see LICENSE.md.
  4. */
  5. /* globals bender, CKEDITOR */
  6. 'use strict';
  7. ( function() {
  8. // Override bender.start to wait until the "ckeditor" module is ready.
  9. var originalStart = bender.start;
  10. bender.start = function() {
  11. CKEDITOR.require( [ 'ckeditor' ], function() {
  12. originalStart.apply( this, arguments );
  13. } );
  14. };
  15. } )();