fable 3.0.23 → 3.0.24

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": "fable",
3
- "version": "3.0.23",
3
+ "version": "3.0.24",
4
4
  "description": "An entity behavior management and API bundling library.",
5
5
  "main": "source/Fable.js",
6
6
  "scripts": {
@@ -32,9 +32,9 @@ class FableServiceMetaTemplate extends libFableServiceBase
32
32
  * @param {string} pString - The string to parse
33
33
  * @return {string} The result from the parser
34
34
  */
35
- parseString(pString)
35
+ parseString(pString, pData)
36
36
  {
37
- return this._MetaTemplateLibrary.parseString(pString, this.ParseTree);
37
+ return this._MetaTemplateLibrary.parseString(pString, pData);
38
38
  }
39
39
  }
40
40