Skip to content
This repository has been archived by the owner on Oct 9, 2020. It is now read-only.

Commit

Permalink
buildStatic support for context without a global
Browse files Browse the repository at this point in the history
  • Loading branch information
chrmod committed Jun 12, 2017
1 parent b7b1936 commit 41e329c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion templates/sfx-core.js
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@
};
};

})(typeof self !== 'undefined' ? self : global)
})((typeof self !== 'undefined') ? self : (typeof global !== 'undefined') ? global : this)
/* (['mainModule'], ['external-dep'], false, function($__System) {
System.register(...);
})
Expand Down
2 changes: 1 addition & 1 deletion templates/sfx-core.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 41e329c

Please sign in to comment.