summaryrefslogtreecommitdiffstats
path: root/apps/bookmarks/js/bookmarksearch.js
blob: e7a4fb18393e53c6ddcda1778c43a1f5d218d2e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/**
 * Copyright (c) 2012 David Iwanowitsch <david at unclouded dot de>
 * This file is licensed under the Affero General Public License version 3 or
 * later.
 * See the COPYING-README file.
 */
$(document).ready(function(){
	OC.search.customResults['Bookm.'] = function(row,item){
		var a=row.find('a');
		a.attr('target','_blank');
		a.click(recordClick);
	}
});

function recordClick(event) {
	var jsFileLocation = $('script[src*=bookmarksearch]').attr('src');
	jsFileLocation = jsFileLocation.replace('js/bookmarksearch.js', '');
	$.ajax({
		url: jsFileLocation + 'ajax/recordClick.php',
		data: 'url=' + encodeURI($(this).attr('href')),
	});	
}