mirror of
https://github.com/Polymer/polymer.git
synced 2025-02-25 18:55:30 -06:00
Fixes #3270.
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user