X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/faef1a564460905fd4c78953bf2f7023b5a94fc7..4af4ef861ca5d4f1684fa0f36a91c2632bbff1bc:/wolnelektury/static/js/search.js

diff --git a/wolnelektury/static/js/search.js b/wolnelektury/static/js/search.js
index e96929ef3..6afc4a399 100644
--- a/wolnelektury/static/js/search.js
+++ b/wolnelektury/static/js/search.js
@@ -29,7 +29,8 @@ var __bind = function (self, fn) {
    
 	render_item: function (ul, item) {
 	    return $("<li></li>").data('item.autocomplete', item)
-		.append('<a href="'+item.url+'">'+item.label+ ' ('+item.category+')</a>')
+		.append('<a href="'+item.url+'"><span class="search-hint-label">'+item.label+'</span>'+
+			'<span class="search-hint-category mono">'+item.category+'</span></a>')
 		.appendTo(ul);
 	},
 
@@ -38,15 +39,6 @@ var __bind = function (self, fn) {
 	},
 	
 
-
-	});
-
-    $(function() {
-        $("#search").search();
-
-	$(".search-result .see-more-snippets").click(function() {
-	    $(this).closest('.search-result').find('.snippets').removeClass('ui-helper-hidden');
-	    });
     });