@saltcorn/server 0.9.0-beta.3 → 0.9.0-beta.4
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 +8 -8
- package/public/saltcorn.js +3 -0
package/package.json
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@saltcorn/server",
|
|
3
|
-
"version": "0.9.0-beta.
|
|
3
|
+
"version": "0.9.0-beta.4",
|
|
4
4
|
"description": "Server app for Saltcorn, open-source no-code platform",
|
|
5
5
|
"homepage": "https://saltcorn.com",
|
|
6
6
|
"main": "index.js",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"dependencies": {
|
|
9
|
-
"@saltcorn/base-plugin": "0.9.0-beta.
|
|
10
|
-
"@saltcorn/builder": "0.9.0-beta.
|
|
11
|
-
"@saltcorn/data": "0.9.0-beta.
|
|
12
|
-
"@saltcorn/admin-models": "0.9.0-beta.
|
|
13
|
-
"@saltcorn/filemanager": "0.9.0-beta.
|
|
14
|
-
"@saltcorn/markup": "0.9.0-beta.
|
|
15
|
-
"@saltcorn/sbadmin2": "0.9.0-beta.
|
|
9
|
+
"@saltcorn/base-plugin": "0.9.0-beta.4",
|
|
10
|
+
"@saltcorn/builder": "0.9.0-beta.4",
|
|
11
|
+
"@saltcorn/data": "0.9.0-beta.4",
|
|
12
|
+
"@saltcorn/admin-models": "0.9.0-beta.4",
|
|
13
|
+
"@saltcorn/filemanager": "0.9.0-beta.4",
|
|
14
|
+
"@saltcorn/markup": "0.9.0-beta.4",
|
|
15
|
+
"@saltcorn/sbadmin2": "0.9.0-beta.4",
|
|
16
16
|
"@socket.io/cluster-adapter": "^0.2.1",
|
|
17
17
|
"@socket.io/sticky": "^1.0.1",
|
|
18
18
|
"adm-zip": "0.5.10",
|
package/public/saltcorn.js
CHANGED
|
@@ -381,6 +381,9 @@ function saveAndContinue(e, k) {
|
|
|
381
381
|
if (res.notify) {
|
|
382
382
|
notifyAlert(res.notify);
|
|
383
383
|
}
|
|
384
|
+
if (res.reload_page) {
|
|
385
|
+
location.reload(); //TODO notify to cookie if reload or goto
|
|
386
|
+
}
|
|
384
387
|
},
|
|
385
388
|
error: function (request) {
|
|
386
389
|
var ct = request.getResponseHeader("content-type") || "";
|