Skip to content

Commit

Permalink
update node devDependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
dfreedm committed Dec 4, 2017
1 parent 1fbb504 commit a39f3f4
Show file tree
Hide file tree
Showing 4 changed files with 1,298 additions and 743 deletions.
6 changes: 4 additions & 2 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,11 @@
"Boolean": "boolean",
"Number": "number",
"String": "string",
"object": "Object"
"object": "Object",
"array": "Array"
}
}]
}],
"no-useless-escape": "off"
},
"env": {
"browser": true,
Expand Down
2 changes: 2 additions & 0 deletions lib/legacy/polymer.dom.html
Original file line number Diff line number Diff line change
Expand Up @@ -198,9 +198,11 @@
function forwardMethods(proto, methods) {
for (let i=0; i < methods.length; i++) {
let method = methods[i];
/* eslint-disable valid-jsdoc */
proto[method] = /** @this {DomApi} */ function() {
return this.node[method].apply(this.node, arguments);
};
/* eslint-enable */
}
}

Expand Down
Loading

0 comments on commit a39f3f4

Please sign in to comment.