mirror of
https://github.com/Polymer/polymer.git
synced 2025-02-25 18:55:30 -06:00
Fixes #2077: workaround IE text node splitting issue that can make text bindings fail.
This commit is contained in:
@@ -390,3 +390,22 @@
|
||||
shouldNotChangeChanged: function() { }
|
||||
});
|
||||
</script>
|
||||
|
||||
<dom-module id="x-entity-and-binding">
|
||||
<template>
|
||||
<p>©</p>
|
||||
<p id="binding">{{myText}}</p>
|
||||
</template>
|
||||
</dom-module>
|
||||
|
||||
<script>
|
||||
Polymer({
|
||||
is: "x-entity-and-binding",
|
||||
properties: {
|
||||
myText: {
|
||||
type: String,
|
||||
value: 'binding'
|
||||
}
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
Reference in New Issue
Block a user