X-Git-Url: http://git.indexdata.com/?p=mkws-moved-to-github.git;a=blobdiff_plain;f=src%2Fmkws-widget-categories.js;h=b9004c929594cf368cae385d33db5d54c5ea435f;hp=aa25653675646530835d6524f5bf485ad069a63c;hb=HEAD;hpb=a2724017cbd5c011daa38489723ee3197877e085 diff --git a/src/mkws-widget-categories.js b/src/mkws-widget-categories.js index aa25653..b9004c9 100644 --- a/src/mkws-widget-categories.js +++ b/src/mkws-widget-categories.js @@ -1,26 +1,22 @@ -mkws.registerWidgetType('Categories', function() { +mkws.registerWidgetType('categories', function() { var that = this; - if (!this.config.use_service_proxy) { - alert("can't use categories widget without Service Proxy"); - return; - } - this.team.queue("authenticated").subscribe(function(authName, realm) { - var req = new pzHttpRequest(that.config.pazpar2_url + "?command=categories", function(err) { + var req = new pzHttpRequest(mkws.pazpar2_url() + "?command=categories", function(err) { alert("HTTP call for categories failed: " + err) }); req.get(null, function(data) { + var $ = mkws.$; if (!$.isXMLDoc(data)) { alert("categories response document is not XML"); return; } - that.log("got categories: " + data); + that.info("got categories: " + data); var text = []; text.push("Select category: "); - text.push(""); - $(that.node).html(text.join('')); + that.node.html(text.join('')); }); }); });