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 f1e5641 commit 62037a3Copy full SHA for 62037a3
delite/createRenderer.js
@@ -55,8 +55,8 @@ define([
55
template._instanceData = this.instanceData;
56
}
57
this.appendChild(this.own(template.instantiate(this))[0].content);
58
- forEach.call(this.querySelectorAll("[data-attach-point]"), function (elem) {
59
- var value = elem.getAttribute("data-attach-point");
+ forEach.call(this.querySelectorAll("[attach-point]"), function (elem) {
+ var value = elem.getAttribute("attach-point");
60
if (value) {
61
this[value] = elem;
62
tests/delite/templates/attachPointTemplate.html
@@ -1 +1 @@
1
-<input data-attach-point="valueNode">
+<input attach-point="valueNode">
0 commit comments