We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 72a59f7 commit 6005435Copy full SHA for 6005435
lib/elements/dom-bind.html
@@ -127,6 +127,8 @@
127
128
customElements.define('dom-bind', DomBind);
129
130
+ Polymer.DomBind = DomBind;
131
+
132
})();
133
134
</script>
test/unit/dom-bind.html
@@ -58,6 +58,13 @@
58
59
<script>
60
61
+ suite('Polymer.DomBind class', function() {
62
+ test('is available', function() {
63
+ assert.isDefined(Polymer.DomBind);
64
+ assert.equal(typeof Polymer.DomBind, 'function');
65
+ });
66
67
68
suite('dom-bind touched before upgrade', function() {
69
test('value binds top-down', function() {
70
assert.equal(earlyBoundChild.textContent, 'hi!');
0 commit comments