We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
imported-template
<dom-bind>
<dom-bind id="domBind"> <imported-template html="{{html}}" model="{{model}}"></imported-template> </dom-bind>
domBind.set('model', {foo: 'not changed'});
<template><dom-bind>{{model.foo}}</dom-bind></template>
foo
https://jsbin.com/nufinevija/1/edit?html,output
Inner dom-bind should get notified and value changed
dom-bind is not notified and value is not changed
//cc @alshakero
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Steps to reproduce
imported-template
using<dom-bind>
domBind.set('model', {foo: 'not changed'});
and import scopeless document:foo
property of a model using `domBind.set('model.foo', 'changed');Live Demo
https://jsbin.com/nufinevija/1/edit?html,output
Expected result
Inner dom-bind should get notified and value changed
Actual result
dom-bind is not notified and value is not changed
Browsers affected
//cc @alshakero
The text was updated successfully, but these errors were encountered: