Skip to content
This repository has been archived by the owner on Mar 13, 2018. It is now read-only.

Commit

Permalink
Use path.valid, rather than Path.isValid
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaelw committed Sep 3, 2013
1 parent 94ec638 commit 604e9d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/polymer-expressions.js
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,7 @@

PolymerExpressions.prototype = {
getBinding: function(model, pathString, name, node) {
if (Path.isValid(pathString))
if (Path.get(pathString).valid)
return; // bail out early if pathString is simple path.

return getBinding(model, pathString, name, node);
Expand Down

0 comments on commit 604e9d8

Please sign in to comment.