Skip to content

Commit 74c8d45

Browse files
committed
Make jshint happy
1 parent f47319d commit 74c8d45

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Diff for: index.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -170,8 +170,9 @@ function join(a, b) {
170170
* Helper to get children from a matched route.
171171
*/
172172
function getChildren() {
173-
return this.route ?
174-
this.route.handler(merge(this.match, {ref: this.route.ref})) :
173+
var self = this; // jshint ignore:line
174+
return self.route ?
175+
self.route.handler(merge(self.match, {ref: self.route.ref})) :
175176
undefined;
176177
}
177178

0 commit comments

Comments
 (0)