changeset 5549:ae750b5d7de0 stable

bookmarks: fix 'compare bookmarks' button Commit b0774d79c7c95ec14ec6d23389d85ed544dd4b50 broke the 'Compare bookmarks' button on the repository bookmarks page, when attempting to replace a Yahoo UI click handler with jQuery.
author Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>
date Sun, 11 Oct 2015 22:09:11 +0200
parents 1c9c3b0f21ae
children 03975e4a8532
files kallithea/templates/bookmarks/bookmarks.html
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/kallithea/templates/bookmarks/bookmarks.html	Fri Oct 02 21:50:54 2015 +0200
+++ b/kallithea/templates/bookmarks/bookmarks.html	Sun Oct 11 22:09:11 2015 +0200
@@ -31,7 +31,7 @@
 </div>
 
 <script type="text/javascript">
-$('#compare_bookmarks','click',function(e){
+$('#compare_bookmarks').click(function(e){
     e.preventDefault();
     var org = $('input[name=compare_org]:checked')[0];
     var other = $('input[name=compare_other]:checked')[0];