@webqit/oohtml 4.1.1-debug.6 → 4.1.1-debug.7
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/dist/main.js +1 -1
- package/dist/main.js.map +2 -2
- package/dist/main.lite.js +1 -1
- package/dist/main.lite.js.map +2 -2
- package/dist/scoped-js.js +1 -1
- package/dist/scoped-js.js.map +2 -2
- package/package.json +1 -1
- package/src/scoped-js/index.js +1 -2
package/package.json
CHANGED
package/src/scoped-js/index.js
CHANGED
|
@@ -120,8 +120,7 @@ function realtime( config ) {
|
|
|
120
120
|
if ( script.scoped ) { thisContext[ config.api.scripts ].push( script ); }
|
|
121
121
|
const execHash = _toHash( { script, compiledScript, thisContext } );
|
|
122
122
|
const manualHandling = record.type === 'query' || ( script.type && !window.HTMLScriptElement.supports( script.type ) );
|
|
123
|
-
|
|
124
|
-
if ( manualHandling ) { oohtml.Script.execute( execHash ); } else {
|
|
123
|
+
if ( manualHandling && 1 ) { oohtml.Script.execute( execHash ); } else {
|
|
125
124
|
script.textContent = `webqit.oohtml.Script.execute( '${ execHash }' );`;
|
|
126
125
|
}
|
|
127
126
|
} );
|