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

Commit d52a288

Browse files
committed
Dont path a path object into PolymerExpressions.getBinding
https://codereview.appspot.com/95740044/ broken PolymerExpressions by handing in a Path object rather than the pathString. R=sorvell BUG= Review URL: https://codereview.appspot.com/91770043
1 parent f5d5ee2 commit d52a288

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/declaration/mdv.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
var path = Path.get(pathString);
1818

1919
return events.prepareEventBinding(path, name, node) ||
20-
prepareBinding.call(syntax, path, name, node);
20+
prepareBinding.call(syntax, pathString, name, node);
2121
};
2222

2323
// declaration api supporting mdv

0 commit comments

Comments
 (0)