autocomplete doesnt support jsonp, handler added
[wolnelektury.git] / apps / wolnelektury_core / static / js / search.js
index 0b8dd39..dc9fac2 100644 (file)
@@ -11,23 +11,11 @@ var __bind = function (self, fn) {
         },
 
        _create: function() {
-            console.log("dataType: " + this.options.dataType);
-            var url = this.element.data('source');
            var opts = { 
                minLength: this.options.minLength,
                select: __bind(this, this.enter),
                focus: function() { return false; },
-               source: function(req, cb) {
-                    $.ajax({url: url,
-                            dataType: "jsonp",
-                            type: "GET",
-                            success: function(data) {
-                                cb(data);
-                            },
-                            error: function() { cb([]); }
-
-                });
-                },
+                source: this.element.data('source'),
            };
 
            this.element.autocomplete($.extend(opts, this.options))