service_proxy_auth: "http://sp-mkws.indexdata.com/service-proxy/?command=auth&action=login&username=paratext&password=paratext_mkc"
};
-mkws.registerWidgetType('ReferenceUniverse', function() {
+mkws.registerWidgetType('reference-universe', function() {
if (!this.config.perpage) this.config.perpage = 5;
if (!this.config.sort) this.config.sort = "position";
- this.team.registerTemplate('ReferenceUniverse', '\
+ this.team.registerTemplate('reference-universe', '\
<h2>Results from Reference Universe</h2>\
<ul>\
{{#each hits}}\
');
var that = this;
- var template = that.team.loadTemplate(that.config.template || "ReferenceUniverse");
+ var template = that.team.loadTemplate(that.config.template || "reference-universe");
this.team.queue("records").subscribe(function(data) {
that.node.html(template(data));
});