Comparing version 0.6.0 to 0.6.1
{ | ||
"name": "sajari", | ||
"version": "0.6.0", | ||
"version": "0.6.1", | ||
"description": "JavaScript SDK for access to the Sajari search API", | ||
@@ -5,0 +5,0 @@ "author": { |
@@ -132,9 +132,8 @@ /* | ||
pixel: function(data, path) { | ||
log("Pixel: " + data); | ||
var img = new Image(); | ||
img.onerror = function() { | ||
log('Failed sending: ' + img.src); | ||
log.error('Failed sending: ' + img.src); | ||
}; | ||
img.onload = function() { | ||
log('Successful send: ' + img.src); | ||
log.error('Successful send: ' + img.src); | ||
}; | ||
@@ -141,0 +140,0 @@ // Merge in the company and collection data |
36019
1012