Skip to content

Commit

Permalink
fix bug kissyteam#575 and use less loop times
Browse files Browse the repository at this point in the history
  • Loading branch information
承风 committed Mar 6, 2014
1 parent 21ce382 commit bf12c4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/seed/src/lang/object.js
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@
var o = S.clone(varArgs[0]),
i,
l = var_args.length;
for (i = 0; i < l; i++) {
for (i = 1; i < l; i++) {
S.mix(o, var_args[i]);
}
return o;
Expand Down

0 comments on commit bf12c4e

Please sign in to comment.