X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=examples%2Fhtdocs%2Fmkws-widget-ru.js;h=55b4488fc65eda7351ca6ce66a9fb1784b50e6d2;hb=40ebe86a8b551faa6ec711e5a38e5a2de515ca45;hp=0fb6c678c31abb925de1303b245f023a47c7153a;hpb=ee2ed5b10dc202c31b82fa58c440c5fa444e5d06;p=mkws-moved-to-github.git diff --git a/examples/htdocs/mkws-widget-ru.js b/examples/htdocs/mkws-widget-ru.js index 0fb6c67..55b4488 100644 --- a/examples/htdocs/mkws-widget-ru.js +++ b/examples/htdocs/mkws-widget-ru.js @@ -1,23 +1,36 @@ -var mkws_config = {service_proxy_auth: "http://mkws.indexdata.com/service-proxy/?command=auth&action=login&username=paratext&password=paratext_mkc"}; -console.log(JSON.stringify(mkws.config)); +var mkws_config = { + service_proxy_auth: "http://mkws.indexdata.com/service-proxy/?command=auth&action=login&username=paratext&password=paratext_mkc" +}; mkws.registerWidgetType('ReferenceUniverse', function() { if (!this.config.perpage) this.config.perpage = 5; if (!this.config.sort) this.config.sort = "position"; - this.config.template = 'ReferenceUniverse'; this.team.registerTemplate('ReferenceUniverse', '\ -{{#mkws-first md-electronic-url}}\ -\ -{{/mkws-first}}\ - {{md-title}}\ -\ -{{#if md-title-remainder}}\ - {{md-title-remainder}}\ -{{/if}}\ -{{#if md-title-responsibility}}\ - {{md-title-responsibility}}\ -{{/if}}\ +

Results from Reference Universe

\ +\ '); - this.node.html("

Reference Universe results:

\n" + - this.subwidget('Records')); + + var that = this; + var template = that.team.loadTemplate(that.config.template || "ReferenceUniverse"); + this.team.queue("records").subscribe(function(data) { + that.node.html(template(data)); + }); + that.autosearch(); }); +