glib-web 3.27.2 → 3.27.3

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/package.json +1 -1
  2. package/utils/http.js +3 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "glib-web",
3
- "version": "3.27.2",
3
+ "version": "3.27.3",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/utils/http.js CHANGED
@@ -143,6 +143,9 @@ export default class {
143
143
  };
144
144
 
145
145
  Utils.http.execute(data, "GET", component, (page, response) => {
146
+ // The execution goes in the following order: onResponse, page render, onLoad
147
+ GLib.action.execute(page.onResponse, component);
148
+
146
149
  Utils.http.forceComponentUpdate(() => {
147
150
  vueApp.page = page;
148
151
  const redirectUrl = Utils.url.htmlUrl(response.url);