1
0
mirror of https://github.com/owncloud/bookmarks.git synced 2024-11-29 04:24:11 +01:00

Update bookmarks/js/bookmarks.js

Removed trailing comma
This commit is contained in:
Raghu Nayyar 2012-11-07 03:19:58 +05:30
parent 9ad3ff5a95
commit 58fbba8a3f

View File

@ -304,7 +304,7 @@ function recordClick(event) {
$.ajax({
type: 'POST',
url: OC.filePath('bookmarks', 'ajax', 'recordClick.php'),
data: 'url=' + encodeURIComponent($(this).attr('href')),
data: 'url=' + encodeURIComponent($(this).attr('href'))
});
}