@webqit/oohtml 2.1.32 → 2.1.34

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
@@ -14,7 +14,7 @@
14
14
  "wicg-proposal"
15
15
  ],
16
16
  "homepage": "https://webqit.io/tooling/oohtml",
17
- "version": "2.1.32",
17
+ "version": "2.1.34",
18
18
  "license": "MIT",
19
19
  "repository": {
20
20
  "type": "git",
@@ -136,9 +136,8 @@ function realtime( config ) {
136
136
  if ( config.target.attr ) { currTarget.toggleAttribute( config.target.attr, true ); }
137
137
  if ( config.target.event ) { currTarget.dispatchEvent( new window.CustomEvent( config.target.event ) ); }
138
138
  if ( config.target.scrolling && path.length > 1 ) { currTarget.scrollIntoView(); }
139
-
139
+ prevTarget = currTarget;
140
140
  }
141
- prevTarget = currTarget;
142
141
  };
143
142
  window.addEventListener( 'hashchange', activateTarget );
144
143
  realdom.ready( activateTarget );