From: Mike Taylor Date: Wed, 28 May 2014 14:17:56 +0000 (+0100) Subject: Convert query to title case for titles. X-Git-Tag: 1.0.0~587 X-Git-Url: http://sru.miketaylor.org.uk/cgi-bin?a=commitdiff_plain;h=735ae2a2d2da324521f4cdcaf77d102776a64a84;p=mkws-moved-to-github.git Convert query to title case for titles. --- diff --git a/examples/htdocs/mkws-widget-credo.js b/examples/htdocs/mkws-widget-credo.js index f00abf7..a41ec88 100644 --- a/examples/htdocs/mkws-widget-credo.js +++ b/examples/htdocs/mkws-widget-credo.js @@ -79,10 +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); + }); + } });