move the source files to ./src

This commit is contained in:
Martin
2017-08-04 22:28:54 +02:00
parent 58dd1c66fd
commit f36d6f5915
37 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -6,13 +6,13 @@
* Fabric functionality is extended with some custom functionality. This is done before
* we do anything else.
*/
require('./includes/extend-fabric-functionality')();
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('./includes/ImageEditor');
window.ImageEditor = require('./ImageEditor');
}());