fable 3.0.41 → 3.0.43
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/dist/fable.compatible.js +3985 -150
- package/dist/fable.compatible.min.js +28 -36
- package/dist/fable.compatible.min.js.map +1 -1
- package/dist/fable.js +3914 -79
- package/dist/fable.min.js +28 -36
- package/dist/fable.min.js.map +1 -1
- package/package.json +2 -2
- package/source/services/Fable-Service-RestClient.js +3 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fable",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.43",
|
|
4
4
|
"description": "An entity behavior management and API bundling library.",
|
|
5
5
|
"main": "source/Fable.js",
|
|
6
6
|
"scripts": {
|
|
@@ -75,7 +75,7 @@
|
|
|
75
75
|
"fable-settings": "^3.0.5",
|
|
76
76
|
"fable-uuid": "^3.0.5",
|
|
77
77
|
"manyfest": "^1.0.24",
|
|
78
|
-
"precedent": "^1.0.
|
|
78
|
+
"precedent": "^1.0.12",
|
|
79
79
|
"simple-get": "^4.0.1"
|
|
80
80
|
}
|
|
81
81
|
}
|
|
@@ -130,7 +130,7 @@ class FableServiceRestClient extends libFableServiceBase
|
|
|
130
130
|
|
|
131
131
|
getJSON(pOptionsOrURL, fCallback)
|
|
132
132
|
{
|
|
133
|
-
let tmpRequestOptions = (typeof(
|
|
133
|
+
let tmpRequestOptions = (typeof(pOptionsOrURL) == 'object') ? pOptionsOrURL : {};
|
|
134
134
|
if (typeof(pOptionsOrURL) == 'string')
|
|
135
135
|
{
|
|
136
136
|
tmpRequestOptions.url = pOptionsOrURL;
|
|
@@ -188,7 +188,7 @@ class FableServiceRestClient extends libFableServiceBase
|
|
|
188
188
|
|
|
189
189
|
return this.executeJSONRequest(pOptions, fCallback);
|
|
190
190
|
}
|
|
191
|
-
|
|
191
|
+
|
|
192
192
|
delJSON(pOptions, fCallback)
|
|
193
193
|
{
|
|
194
194
|
pOptions.method = 'DELETE';
|
|
@@ -198,7 +198,7 @@ class FableServiceRestClient extends libFableServiceBase
|
|
|
198
198
|
|
|
199
199
|
getRawText(pOptionsOrURL, fCallback)
|
|
200
200
|
{
|
|
201
|
-
let tmpRequestOptions = (typeof(
|
|
201
|
+
let tmpRequestOptions = (typeof(pOptionsOrURL) == 'object') ? pOptionsOrURL : {};
|
|
202
202
|
if (typeof(pOptionsOrURL) == 'string')
|
|
203
203
|
{
|
|
204
204
|
tmpRequestOptions.url = pOptionsOrURL;
|