Always export window.L; fixes #5489 (#5504)

This commit is contained in:
Per Liedman 2017-05-18 10:28:14 +02:00 committed by Iván Sánchez Ortega
parent f049129868
commit 942e1df2b8

View File

@ -30,3 +30,6 @@ export function noConflict() {
window.L = oldL;
return this;
}
// Always export us to window global (see #2364)
window.L = exports;