Skip to content

Commit

Permalink
Use undefinedThis explicitly (fixes Chrome's halfway use strict)
Browse files Browse the repository at this point in the history
  • Loading branch information
kriszyp committed Mar 4, 2011
1 parent 6232a86 commit d39c132
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/compose.js
Expand Up @@ -200,7 +200,7 @@ define([], function(){
function extend(){
var args = [this];
args.push.apply(args, arguments);
return Compose.apply(undefined, args);
return Compose.apply(undefinedThis, args);
}
// Compose a constructor
function Compose(base){
Expand Down

0 comments on commit d39c132

Please sign in to comment.