@webqit/webflo 0.9.6 → 0.9.7-0

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
@@ -12,7 +12,7 @@
12
12
  "vanila-javascript"
13
13
  ],
14
14
  "homepage": "https://webqit.io/tooling/webflo",
15
- "version": "0.9.6",
15
+ "version": "0.9.7-0",
16
16
  "license": "MIT",
17
17
  "repository": {
18
18
  "type": "git",
@@ -147,7 +147,6 @@ export default class Runtime {
147
147
  this.go(Url.copy(actionEl), {
148
148
  method: submitParams.method,
149
149
  body: formData,
150
- headers: { contentType: submitParams.enctype },
151
150
  }, { ...submitParams, src: form, srcType: 'form', });
152
151
  // URLs with # will cause a natural navigation
153
152
  // even if pointing to a different page, a natural navigation will still happen
@@ -76,6 +76,7 @@ export default class Worker {
76
76
  // -------------
77
77
  // ONFETCH
78
78
  self.addEventListener('fetch', async evt => {
79
+ return;
79
80
  // URL schemes that might arrive here but not supported; e.g.: chrome-extension://
80
81
  if (!evt.request.url.startsWith('http') || evt.request.mode === 'navigate') return;
81
82
  const requestInit = [