Skip to content
This repository has been archived by the owner on Feb 16, 2021. It is now read-only.

Commit

Permalink
Third party wrapping fix to the closure that grabs window
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesMGreene committed Jun 17, 2014
1 parent 59d3f1b commit de1a72e
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion dist/ZeroClipboard.Core.js
Expand Up @@ -1675,5 +1675,5 @@
window.ZeroClipboard = ZeroClipboard;
}
})(function() {
return this;
return this || window;
}());
2 changes: 1 addition & 1 deletion dist/ZeroClipboard.Core.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/ZeroClipboard.Core.min.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/ZeroClipboard.js
Expand Up @@ -2201,5 +2201,5 @@
window.ZeroClipboard = ZeroClipboard;
}
})(function() {
return this;
return this || window;
}());
2 changes: 1 addition & 1 deletion dist/ZeroClipboard.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/ZeroClipboard.min.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/js/end.js
Expand Up @@ -17,5 +17,5 @@ else {

})((function() {
/*jshint strict: false */
return this;
return this || window;
})());

0 comments on commit de1a72e

Please sign in to comment.