X-Git-Url: http://jsfdemo.indexdata.com/?a=blobdiff_plain;f=examples%2Fhtdocs%2Fmkws-widget-credo.js;h=a41ec88d743e2f2617e27e9b2c2a00e74529412a;hb=2268599e081206a1c054108425d7f21fe8965a9e;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..a41ec88 100644 --- a/examples/htdocs/mkws-widget-credo.js +++ b/examples/htdocs/mkws-widget-credo.js @@ -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); + }); + } });