1
0
Fork 0

🚧 Last changes for pivot to JavaScript

This commit is contained in:
Joost De Cock 2018-07-24 08:34:26 +02:00
parent 9fbef27330
commit 27500d52e1
4 changed files with 10 additions and 5 deletions

View file

@ -35,6 +35,7 @@ export default function pattern(config = false) {
this.hooks = new hooks();
// Data containers
this.settings = {};
this.values = {};
this.parts = {};
for (let id of config.parts) {
@ -53,7 +54,8 @@ export default function pattern(config = false) {
parts: this.parts,
options: this.options,
values: this.values,
config: this.config
config: this.config,
settings: this.settings
};
}