Skip to content

Commit 89b1e63

Browse files
author
MAGNAVIEW\Ruud
committed
Mix function should return destination instead of source
1 parent f6fc485 commit 89b1e63

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

runtime/DojoAMDMainTemplate.runtime.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ module.exports = {
2020
main: function() {
2121
function mix(dest, src) { // eslint-disable-line no-unused-vars
2222
for(var n in src) dest[n] = src[n];
23-
return src;
23+
return dest;
2424
}
2525

2626
function toUrl(name, referenceModule) {

0 commit comments

Comments
 (0)