mean-comscore-api
Advanced tools
Comparing version 0.0.4 to 0.0.5
{ | ||
"name": "mean-comscore-api", | ||
"version": "0.0.4", | ||
"version": "0.0.5", | ||
"description": "Loads ComScore reports from the ComScore API", | ||
@@ -5,0 +5,0 @@ "author": { |
@@ -36,4 +36,4 @@ 'use strict'; | ||
var getReport = function(params, callback) { | ||
$http.get(buildUrl('/comscore/report', params)).success(function(data) { | ||
var getReport = function(params, callback, options) { | ||
$http.get(buildUrl('/comscore/report', params), options).success(function(data) { | ||
if (typeof callback === 'function') { | ||
@@ -45,4 +45,4 @@ callback(data); | ||
var getReportData = function(params, callback) { | ||
$http.get(buildUrl('/comscore/reportdata', params)).success(function(data) { | ||
var getReportData = function(params, callback, options) { | ||
$http.get(buildUrl('/comscore/reportdata', params), options).success(function(data) { | ||
if (typeof callback === 'function') { | ||
@@ -60,1 +60,2 @@ callback(data); | ||
]); | ||
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
21325