analytics.js-loader
Advanced tools
Comparing version 1.0.1 to 1.1.0
@@ -0,1 +1,5 @@ | ||
# 1.1.0 (2015-04-24) | ||
* add skipPageCall param | ||
# 1.0.1 (2015-02-10) | ||
@@ -2,0 +6,0 @@ |
@@ -86,3 +86,5 @@ module.exports = load; | ||
// move this call however you'd like. | ||
analytics.page(); | ||
if (!opts.skipPageCall) { | ||
analytics.page(); | ||
} | ||
} |
{ | ||
"name": "analytics.js-loader", | ||
"version": "1.0.1", | ||
"version": "1.1.0", | ||
"description": "Asynchronously load segment.com analytics.js with an npm module", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -17,3 +17,5 @@ # analytics.js-loader | ||
require('analytics.js-loader')({ | ||
writeKey: 'YOUR_WRITE_KEY' | ||
writeKey: 'YOUR_WRITE_KEY', | ||
// you can skip the first analytics.page() call if needed, #1 | ||
skipPageCall: false | ||
}); | ||
@@ -31,3 +33,1 @@ | ||
``` | ||
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
4856
77