From e6cb922902b29c80209e6dce577fb6c09af862c8 Mon Sep 17 00:00:00 2001 From: Mike Taylor Date: Wed, 7 May 2014 13:21:46 +0100 Subject: [PATCH] Re-indent. --- src/mkws-widget-record.js | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/mkws-widget-record.js b/src/mkws-widget-record.js index f1167de..106c8a3 100644 --- a/src/mkws-widget-record.js +++ b/src/mkws-widget-record.js @@ -1,24 +1,24 @@ mkws.registerWidgetType('Record', function() { - mkws.promotionFunction('Records').call(this); - if (!this.config.maxrecs) this.config.maxrecs = 1; + mkws.promotionFunction('Records').call(this); + if (!this.config.maxrecs) this.config.maxrecs = 1; }); mkws.registerWidgetType('Image', function() { - mkws.promotionFunction('Record').call(this); - if (!this.config.template) this.config.template = 'Image'; + mkws.promotionFunction('Record').call(this); + if (!this.config.template) this.config.template = 'Image'; }); mkws.registerWidgetType('GoogleImage', function() { - mkws.promotionFunction('Image').call(this); - if (!this.config.target) this.config.target = 'Google_Images'; + mkws.promotionFunction('Image').call(this); + if (!this.config.target) this.config.target = 'Google_Images'; }); mkws.registerWidgetType('Lolcat', function() { - mkws.promotionFunction('GoogleImage').call(this); - if (!this.config.autosearch) this.config.autosearch = 'kitteh'; + mkws.promotionFunction('GoogleImage').call(this); + if (!this.config.autosearch) this.config.autosearch = 'kitteh'; }); mkws.registerWidgetType('Coverart', function() { - mkws.promotionFunction('Image').call(this); - if (!this.config.target) this.config.target = 'AmazonBooks'; + mkws.promotionFunction('Image').call(this); + if (!this.config.target) this.config.target = 'AmazonBooks'; }); -- 1.7.10.4