jsonp support
[wolnelektury.git] / apps / wolnelektury_core / static / js / search.js
index 6afc4a3..3b6ea40 100644 (file)
@@ -7,6 +7,7 @@ var __bind = function (self, fn) {
     $.widget("wl.search", {
        options: {
           minLength: 0,
+         dataType: "json",
         },
 
        _create: function() {
@@ -15,8 +16,11 @@ var __bind = function (self, fn) {
                select: __bind(this, this.enter),
                focus: function() { return false; },
                source: this.element.data('source'),
+               dataType: options.dataType,
            };
-           this.element.autocomplete(opts).data("autocomplete")._renderItem = __bind(this, this.render_item);
+
+           this.element.autocomplete($.extend(opts, this.options))
+               .data("autocomplete")._renderItem = __bind(this, this.render_item);
        },
 
        enter: function(event, ui) {
@@ -32,7 +36,7 @@ var __bind = function (self, fn) {
                .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);
-       },
+       }, 
 
        destroy: function() {