X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=examples%2Fhtdocs%2Fmkws-widget-credo.js;h=59a9a13162b12def3c1e0baa3f33bac4e60f4069;hb=44d27e3f996fca6e534ba32c7f253905f4a3b0e2;hp=342a1e057f9f8a4bd050ea6cb85fa9390393e60b;hpb=9ecb76942ddb11cfa2ffef7aed2de74ad0055065;p=mkws-moved-to-github.git diff --git a/examples/htdocs/mkws-widget-credo.js b/examples/htdocs/mkws-widget-credo.js index 342a1e0..59a9a13 100644 --- a/examples/htdocs/mkws-widget-credo.js +++ b/examples/htdocs/mkws-widget-credo.js @@ -44,7 +44,7 @@ mkws.registerWidgetType('Credo', function() { s.push(''); s.push(section('encyclopaedia', 'Topic Page: ', - this.subwidget('Reference', { _team: 'ref' }))); + this.subwidget('Reference', { _team: 'ref', paragraphs: 1 }))); // The Images widget needs to be in our team so we can set its template s.push(section('image', 'Images', this.subwidget('GoogleImage', { maxrecs: 4, template: 'CredoImage' }))); @@ -79,9 +79,17 @@ mkws.registerWidgetType('Credo', function() { // Fill in the titles from the query once widgets have all been prepared var that = this; this.team.queue("ready").subscribe(function() { - var query = that.config.query; + var query = toTitleCase(that.config.query); that.log("got query '" + query + "' from team config"); mkws.$('.x-mkws-title').html(query); + mkws.$('title').html("MKWS: " + query); + + // Derived from http://stackoverflow.com/questions/196972/convert-string-to-title-case-with-javascript + function toTitleCase(str) { + return str.replace(/\w\S*/g, function(txt) { + return txt.charAt(0).toUpperCase() + txt.substr(1); + }); + } });