Skip to content
This repository has been archived by the owner on Jan 29, 2024. It is now read-only.

Commit

Permalink
fix(partialLoader): fixes deprecated usage of arguments.callee
Browse files Browse the repository at this point in the history
  • Loading branch information
0x-r4bbit committed Jun 3, 2014
1 parent 564820a commit 1ac3a0a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/service/loader-partial.js
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ angular.module('pascalprecht.translate')
if (src[property] && src[property].constructor &&
src[property].constructor === Object) {
dst[property] = dst[property] || {};
arguments.callee(dst[property], src[property]);
deepExtend(dst[property], src[property]);
} else {
dst[property] = src[property];
}
Expand Down

0 comments on commit 1ac3a0a

Please sign in to comment.