@riotjs/dom-bindings
Advanced tools
Comparing version 4.4.1 to 4.4.2
@@ -1328,5 +1328,8 @@ /** | ||
template: null, | ||
cachedParentScope: null, | ||
getTemplateScope(scope, parentScope) { | ||
return extendParentScope(this.attributes, scope, parentScope) | ||
// cache the parent scope to avoid this issue https://github.com/riot/riot/issues/2762 | ||
this.cachedParentScope = parentScope || this.cachedParentScope; | ||
return extendParentScope(this.attributes, scope, this.cachedParentScope) | ||
}, | ||
@@ -1333,0 +1336,0 @@ |
@@ -1334,5 +1334,8 @@ (function (global, factory) { | ||
template: null, | ||
cachedParentScope: null, | ||
getTemplateScope(scope, parentScope) { | ||
return extendParentScope(this.attributes, scope, parentScope) | ||
// cache the parent scope to avoid this issue https://github.com/riot/riot/issues/2762 | ||
this.cachedParentScope = parentScope || this.cachedParentScope; | ||
return extendParentScope(this.attributes, scope, this.cachedParentScope) | ||
}, | ||
@@ -1339,0 +1342,0 @@ |
{ | ||
"name": "@riotjs/dom-bindings", | ||
"version": "4.4.1", | ||
"version": "4.4.2", | ||
"description": "Riot.js DOM bindings", | ||
@@ -51,3 +51,3 @@ "main": "dist/umd.dom-bindings.js", | ||
"rollup-plugin-node-resolve": "^5.2.0", | ||
"sinon": "^7.4.2", | ||
"sinon": "^7.5.0", | ||
"sinon-chai": "^3.3.0" | ||
@@ -54,0 +54,0 @@ }, |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
111723
3183