diff --git a/src/browser/postal.js b/src/browser/postal.js index 6aa477e..6f8cc1f 100644 --- a/src/browser/postal.js +++ b/src/browser/postal.js @@ -1,14 +1,14 @@ -(function ( root, doc, factory ) { +(function ( root, factory ) { if ( typeof define === "function" && define.amd ) { // AMD. Register as an anonymous module. define( ["underscore"], function ( _ ) { - return factory( _, root, doc ); + return factory( _, root ); } ); } else { // Browser globals - factory( root._, root, doc ); + factory( root._, root ); } -}( this, document, function ( _, global, document, undefined ) { +}( this, function ( _, global, undefined ) { //import("../Constants.js"); //import("../ConsecutiveDistinctPredicate.js");