@pageboard/html 0.16.1 → 0.16.2

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pageboard/html",
3
- "version": "0.16.1",
3
+ "version": "0.16.2",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "repository": {
package/ui/form.js CHANGED
@@ -101,8 +101,6 @@ class HTMLElementForm extends Page.create(HTMLFormElement) {
101
101
  if (state.scope.$write) return;
102
102
  const name = state.query.submit; // explicit auto-submit
103
103
  if (name && name == this.name || this.elements.length == 0 && this.action != state.toString()) {
104
- // FIXME
105
- // button target="" makes it not part of elements ?
106
104
  if (state.scope.$read) {
107
105
  console.info("form#paint would auto-submit:", this.action);
108
106
  } else {
package/ui/transition.js CHANGED
@@ -139,8 +139,6 @@ class Transition {
139
139
  this.root.classList.remove('transition', 'transitioning');
140
140
  this.root.scrollTop = top;
141
141
  this.root.scrollLeft = left;
142
- delete this.from;
143
- delete this.to;
144
142
  delete this.state.scope.transition;
145
143
  delete this.state;
146
144
  }