Fixes #2077: workaround IE text node splitting issue that can make text bindings fail.

This commit is contained in:
Steven Orvell
2015-07-14 11:03:19 -07:00
parent c46ec11e0f
commit 312d11fb6d
5 changed files with 117 additions and 2 deletions

View File

@@ -390,3 +390,22 @@
shouldNotChangeChanged: function() { }
});
</script>
<dom-module id="x-entity-and-binding">
<template>
<p>&copy;</p>
<p id="binding">{{myText}}</p>
</template>
</dom-module>
<script>
Polymer({
is: "x-entity-and-binding",
properties: {
myText: {
type: String,
value: 'binding'
}
}
});
</script>