19 lines
535 B
JavaScript
19 lines
535 B
JavaScript
'use strict';
|
|
|
|
(function() {
|
|
|
|
/**
|
|
* Fabric functionality is extended with some custom functionality. This is done before
|
|
* we do anything else.
|
|
*/
|
|
require('./extend-fabric-functionality')();
|
|
|
|
/**
|
|
* ImageEditor is the starting point of all files. Here the image editor is created and
|
|
* it receives attributes from the initialisation. As this is done from outside of this file,
|
|
* the ImageEditor should be available on globally.
|
|
*/
|
|
window.ImageEditor = require('./ImageEditor');
|
|
|
|
}());
|