@urso/core 0.4.13 → 0.4.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@urso/core",
3
- "version": "0.4.13",
3
+ "version": "0.4.14",
4
4
  "description": "HTML5 game engine",
5
5
  "main": "build/js/index.js",
6
6
  "author": "Megbrimef",
@@ -15,7 +15,7 @@ class ModulesObjectsModelsTextInput extends Urso.Core.Modules.Objects.BaseModel
15
15
  this.box = Urso.helper.recursiveGet('box', params, false);
16
16
  this.numbersOnly = Urso.helper.recursiveGet('numbersOnly', params, false);
17
17
  this.allowedSymbols = Urso.helper.recursiveGet('allowedSymbols', params, false);
18
- this.substituteText = Urso.helper.recursiveGet('substituteText', params, false);
18
+ //this.substituteText = Urso.helper.recursiveGet('substituteText', params, false); //todo remove this string
19
19
  this.maxLength = Urso.helper.recursiveGet('maxLength', params, false);
20
20
  }
21
21
 
@@ -53,7 +53,7 @@ class ModulesObjectsModelsTextInput extends Urso.Core.Modules.Objects.BaseModel
53
53
 
54
54
  _addBaseObject() {
55
55
  this._baseObject = new PIXI.TextInput({ input: this.input, box: this.box });
56
- this._baseObject.substituteText = this.substituteText;
56
+ //this._baseObject.substituteText = this.substituteText; //todo remove this string
57
57
 
58
58
  if(this.maxLength)
59
59
  this._baseObject.maxLength = this.maxLength