Skip to content

Commit 1e5a36e

Browse files
committed
Remove stats
1 parent 57142e9 commit 1e5a36e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/index.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
var executeApiFetch = require('./apifetch');
44
var Settings = require('./settings');
55
var util = require('./util');
6-
var sendClickHit = require('./stats');
6+
//var sendClickHit = require('./stats');
77

88
var client = function(sitekey) {
99
this.sitekey = sitekey;
@@ -68,7 +68,7 @@ var client = function(sitekey) {
6868
this.setPaging = function(page, pageSize, sortBy, sortOder) { this.settings.setPaging(page, pageSize, sortBy, sortOder); }
6969
this.nextPage = function() { this.settings.nextPage(); }
7070
this.previousPage = function() { this.settings.previousPage(); }
71-
this.hitClicked = function(docid, position) { sendClickHit(this.sitekey, this.settings.getSettings().keyword, docid, position); }
71+
//this.hitClicked = function(docid, position) { sendClickHit(this.sitekey, this.settings.getSettings().keyword, docid, position); }
7272
}
7373

7474
module.exports = client;

0 commit comments

Comments
 (0)