Create Space - PaoloCifariello/Eventspace.js GitHub Wiki
To create a new space you can use the following
Single space
ES.add('init');
ES.add('pre');
ES.add('post');
Multiple spaces
ES.add(['init','pre','post']);
Overwrite
With this option you can overwrite eventually duplicated spaces. It will also remove all event handlers associated with the overwritten spaces.
ES.add(['init','pre','post'], true);