Skip to content

Commit

Permalink
Final touches for 2.1.0
Browse files Browse the repository at this point in the history
Closes #20
  • Loading branch information
Micky Hulse committed Mar 12, 2013
1 parent cefa394 commit 1f8dc5e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions build/src/onmediaquery.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(function(omq) { // rgne.ws/V4HOQy
(function(omq, window, document, undefined) { // rgne.ws/V4HOQy

'use strict';

Expand Down Expand Up @@ -348,4 +348,4 @@

return omq; // Expose the API.

}(window.oMQ = window.oMQ || {})); // Use existing namespace or make a new object of that namespace.
}((window.oMQ = window.oMQ || {}), window, document, undefined)); // 1) Use existing namespace or make a new object of that namespace; 2) `window`; 3) `document` (rgne.ws/16pSbHc).
4 changes: 2 additions & 2 deletions onmediaquery/onmediaquery.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* @date 2013/03/12
*/

(function(omq) { // rgne.ws/V4HOQy
(function(omq, window, document, undefined) { // rgne.ws/V4HOQy

'use strict';

Expand Down Expand Up @@ -361,4 +361,4 @@

return omq; // Expose the API.

}(window.oMQ = window.oMQ || {})); // Use existing namespace or make a new object of that namespace.
}((window.oMQ = window.oMQ || {}), window, document, undefined)); // 1) Use existing namespace or make a new object of that namespace; 2) `window`; 3) `document` (rgne.ws/16pSbHc).
2 changes: 1 addition & 1 deletion onmediaquery/onmediaquery.min.js

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

0 comments on commit 1f8dc5e

Please sign in to comment.