basic-deltas.js 873 B

1234567891011121314151617181920212223
  1. /**
  2. * @license Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
  3. * For licensing, see LICENSE.md.
  4. */
  5. 'use strict';
  6. // Deltas require `register` method that require `Batch` class and is defined in batch-base.js.
  7. // We would like to group all deltas files in one place, so we would only have to include batch.js
  8. // which would already have all default deltas registered.
  9. // Import default suite of deltas so a feature have to include only Batch class file.
  10. import d01 from './attributedelta.js';
  11. import d02 from './insertdelta.js';
  12. import d03 from './mergedelta.js';
  13. import d04 from './movedelta.js';
  14. import d05 from './removedelta.js';
  15. import d06 from './renamedelta.js';
  16. import d07 from './splitdelta.js';
  17. import d08 from './unwrapdelta.js';
  18. import d09 from './weakinsertdelta.js';
  19. import d10 from './wrapdelta.js';
  20. /*jshint unused: false*/