Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Explicitly bind wrapping IIFE to window for ES5 strict mode compatibility #1398

Merged
merged 2 commits into from
Apr 9, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ Lucas Gabriel Sánchez <unkiwii@gmail.com>
Mattias Wadman <mattias.wadman@gmail.com>
Nick Desaulniers <nick@mozilla.com>
Oskar Arvidsson <oskar@irock.se>
Patrick Kunka <patrick@kunkalabs.com>
Philo Inc. <*@philo.com>
Robert Colantuoni <rgc@colantuoni.com>
Roi Lipman <roilipman@gmail.com>
Expand Down
1 change: 1 addition & 0 deletions CONTRIBUTORS
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ Natalie Harris <natalieharris@google.com>
Nick Desaulniers <nick@mozilla.com>
Niklas Korz <nk@alugha.com>
Oskar Arvidsson <oskar@irock.se>
Patrick Kunka <patrick@kunkalabs.com>
Robert Colantuoni <rgc@colantuoni.com>
Rohit Makasana <rohitbm@google.com>
Roi Lipman <roilipman@gmail.com>
Expand Down
2 changes: 1 addition & 1 deletion build/wrapper.template.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
if (typeof(module)!="undefined"&&module.exports)module.exports=g.shaka;
else if (typeof(define)!="undefined" && define.amd)define(function(){return g.shaka});
else this.shaka=g.shaka;
})();
}).call(window);