Skip to content

Commit

Permalink
Add findById to refable
Browse files Browse the repository at this point in the history
  • Loading branch information
anthonykoerber committed Dec 16, 2015
1 parent aa3928a commit 4ca2042
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/shared/behaviors/refable.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,15 @@
properties: {
ref: {
type: Object,
// readOnly: true,
notify: true,
value: function() { return this; }
}
},

findById: function(id) {
return this.$[id];
}

};

scope.Refable = Refable;
Expand Down

0 comments on commit 4ca2042

Please sign in to comment.