register.js 418 B

1234567891011121314
  1. /**
  2. * @license Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved.
  3. * For licensing, see LICENSE.md.
  4. */
  5. 'use strict';
  6. // Register method exposed for deltas, which needs only this method, to make code simpler, more beautiful and, first of
  7. // all, to solve circular dependencies.
  8. CKEDITOR.define( [
  9. 'document/delta/transaction-base'
  10. ], ( Transaction ) => {
  11. return Transaction.register;
  12. } );