]> git.r.bdr.sh - rbdr/lissajous/blobdiff - lib/components/configuration.js
Add a few comments
[rbdr/lissajous] / lib / components / configuration.js
index ddb4a27583ecf0e5c5637220c5fbb6a05cd77e34..f5787ab0f72220bf17598319bf672848273ff902 100644 (file)
@@ -1,9 +1,13 @@
 import { Component } from '@serpentity/serpentity';
 
 import { Component } from '@serpentity/serpentity';
 
+/**
+  * Stores global behavior configuration that can be adjusted on the go. For
+  * static configuration see lib/config.js instead.
+  */
 export default class Configuration extends Component {
   constructor(config) {
 
     super(config);
 export default class Configuration extends Component {
   constructor(config) {
 
     super(config);
-    this.lineLength = this.lineLength || 1000;
+    this.lineLength = this.lineLength || 500;
   }
 };
   }
 };