@webqit/oohtml 4.3.14 → 4.3.15

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": "4.3.14",
17
+ "version": "4.3.15",
18
18
  "license": "MIT",
19
19
  "repository": {
20
20
  "type": "git",
@@ -204,7 +204,7 @@ function compileInlineBindings( config, str ) {
204
204
  if ( validation[ param ] ) throw new Error( `Duplicate binding: ${ left }.` );
205
205
  validation[ param ] = true;
206
206
  if ( param === 'text' ) return `$assign__(this, 'textContent', ${ $arg });`;
207
- if ( param === 'html' ) return `$exec__(this, 'setHTMLUnsafe', ${ $arg });`;
207
+ if ( param === 'html' ) return `$assign__(this, 'innerHTML', ${ $arg });`;
208
208
  if ( param === 'items' ) {
209
209
  const [ iterationSpec, importSpec ] = _splitOuter( right, '/' );
210
210
  if ( !importSpec ) throw new Error( `Invalid ${ directive }items spec: ${ str }; no import specifier.` );