mirror of
https://github.com/Hopiu/postal.js.git
synced 2026-03-16 22:20:23 +00:00
Merge pull request #17 from webpro/patch-1
Removed unused reference to "document"
This commit is contained in:
commit
da72ca0ec0
1 changed files with 4 additions and 4 deletions
|
|
@ -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");
|
||||
|
|
|
|||
Loading…
Reference in a new issue