@itutoring/itutoring_application_js_api 1.3.35 → 1.3.36

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.
Files changed (2) hide show
  1. package/apiController.js +2 -2
  2. package/package.json +1 -1
package/apiController.js CHANGED
@@ -88,7 +88,7 @@ class APIController
88
88
  {
89
89
  if (request.readyState == 4)
90
90
  {
91
- json = JSON.parse(request.responseText);
91
+ var json = JSON.parse(request.responseText);
92
92
  if (json.code ==200)
93
93
  {
94
94
  resolve(json.data);
@@ -143,7 +143,7 @@ class APIController
143
143
  {
144
144
  if (request.readyState == 4)
145
145
  {
146
- json = JSON.parse(request.responseText);
146
+ var json = JSON.parse(request.responseText);
147
147
  if (json.code ==200)
148
148
  {
149
149
  resolve(json.data);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@itutoring/itutoring_application_js_api",
3
- "version": "1.3.35",
3
+ "version": "1.3.36",
4
4
  "description": "Javascript API for iTutoring Application",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",