don't trap id for marshalling if it's a binding directive + test

This commit is contained in:
Scott J Miles
2015-05-01 10:52:52 -07:00
parent 3d75b60f85
commit 12513df2e1
3 changed files with 31 additions and 16 deletions

View File

@@ -1,5 +1,5 @@
<template>
<div id="boundChild"
<div id="boundChild"
value="{{value}}"
negvalue="{{!bool}}"
attrvalue$="{{attrvalue}}"
@@ -15,6 +15,7 @@
custom-event-object-value="{{customEventObject.value::change}}">
Test
</div>
<span id="{{boundId}}"></span>
</template>
<script>
Polymer({
@@ -72,6 +73,10 @@
customEventObject: {
type: Object,
value: function() { return {}; }
},
boundId: {
type: String,
value: 'span'
}
},
observers: [
@@ -182,7 +187,7 @@
</script>
<template>
<x-basic id="basic1"
<x-basic id="basic1"
value="{{boundvalue}}"
notifyingvalue="{{boundnotifyingvalue}}"
camel-notifying-value="{{boundnotifyingvalue}}"