transaction.js 282 B

12345678910111213
  1. /**
  2. * @license Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved.
  3. * For licensing, see LICENSE.md.
  4. */
  5. 'use strict';
  6. CKEDITOR.define( [
  7. 'document/deltas/transaction-base',
  8. 'document/deltas/changedelta'
  9. ], ( Transaction ) => {
  10. return Transaction;
  11. } );