Skip to content

Commit

Permalink
Replace jQuery.extend with assign() function
Browse files Browse the repository at this point in the history
  • Loading branch information
c9s committed Jun 2, 2016
1 parent 5ea3c4c commit 11ec1f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Action.ts
Original file line number Diff line number Diff line change
Expand Up @@ -429,7 +429,7 @@ export default class Action {
if (typeof arg1 === "function") {
cb = arg1;
} else if (typeof arg1 === "object") {
this.options = jQuery.extend(this.options, arg1);
this.options = assign(this.options, arg1);
if (typeof arg2 === "function") {
cb = arg2;
}
Expand Down

0 comments on commit 11ec1f8

Please sign in to comment.