This commit is contained in:
Steven Orvell
2016-01-05 14:35:21 -08:00
parent 7c20170d69
commit 7d0485b18d
3 changed files with 29 additions and 1 deletions

View File

@@ -468,3 +468,23 @@
<input id="input" value$="{{inputValue}}">
</template>
</dom-module>
<dom-module id="x-bind-is-attached">
<template>
<div id="check">{{isAttached}}</div>
</template>
<script>
Polymer({
is: 'x-bind-is-attached',
properties: {
isAttached: {
observer: '_isAttachedChanged'
}
},
_isAttachedChanged: function() {}
});
</script>
</dom-module>
<s