Skip to content
This repository was archived by the owner on Mar 5, 2025. It is now read-only.
Open
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
2 changes: 1 addition & 1 deletion product/le.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
// Browser globals (root is window)
root.LE = factory(root);
}
}(this, function (window) {
}(typeof window === 'undefined' ? this : window, function (window) {
"use strict";
// cross-browser indexOf fix
var _indexOf = function (array, obj) {
Expand Down
16 changes: 8 additions & 8 deletions product/le.min.js

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

2 changes: 1 addition & 1 deletion src/le.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
// Browser globals (root is window)
root.LE = factory(root);
}
}(this, function (window) {
}(typeof window === 'undefined' ? this : window, function (window) {
"use strict";
// cross-browser indexOf fix
var _indexOf = function (array, obj) {
Expand Down