X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/63f861861578b33416a0b2d801252b27443fabde..92d5e49e4342aaa19efdc77e66d59e7c16c501bb:/src/wolnelektury/static/js/search.js?ds=inline

diff --git a/src/wolnelektury/static/js/search.js b/src/wolnelektury/static/js/search.js
index 786a05c79..34c63f3c9 100644
--- a/src/wolnelektury/static/js/search.js
+++ b/src/wolnelektury/static/js/search.js
@@ -5,44 +5,46 @@ var __bind = function (self, fn) {
 
 (function($){
     $.widget("wl.search", {
-	options: {
-          minLength: 0,
-	  dataType: "json",
-          host: '',
+        options: {
+              minLength: 0,
+          dataType: "json",
+              host: ''
+            },
+
+        _create: function() {
+            var opts = {
+            minLength: this.options.minLength,
+            select: __bind(this, this.enter),
+            focus: function() { return false; },
+                    source: this.element.data('source')
+            };
+
+            this.element.autocomplete($.extend(opts, this.options))
+            .data("autocomplete")._renderItem = __bind(this, this.render_item);
         },
 
-	_create: function() {
-	    var opts = { 
-		minLength: this.options.minLength,
-		select: __bind(this, this.enter),
-		focus: function() { return false; },
-                source: this.element.data('source'),
-	    };
-
-	    this.element.autocomplete($.extend(opts, this.options))
-		.data("autocomplete")._renderItem = __bind(this, this.render_item);
-	},
-
-	enter: function(event, ui) {
-	    if (ui.item.url != undefined) {
-		location.href = this.options.host+ui.item.url;
-	    } else {
-		this.element.closest('form').submit();
-	    }
-	},
-   
-	render_item: function (ul, item) {
-	    return $("<li></li>").data('item.autocomplete', item)
-		.append('<a href="'+this.options.host+item.url+'"><span class="search-hint-label">'+item.label+'</span>')
-		.appendTo(ul);
-	}, 
-
-	destroy: function() {
-
-	},
-	
+        enter: function(event, ui) {
+            if (ui.item.url !== undefined) {
+            location.href = this.options.host+ui.item.url;
+            } else {
+            this.element.closest('form').submit();
+            }
+        },
 
-    });
+        render_item: function (ul, item) {
+            var label;
+            if (item['author']) {
+                label = '<cite>' + item.label + '</cite>, ' + item['author'];
+            } else {
+                label = item.label;
+            }
+            return $("<li></li>").data('item.autocomplete', item)
+            .append('<a href="'+this.options.host+item.url+'"><span class="search-hint-label">'+label+'</span>')
+            .appendTo(ul);
+        },
 
+        destroy: function() {
+        }
+    });
 
 })(jQuery);