summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan McGee <dpmcgee@gmail.com>2011-01-10 00:26:33 -0600
committerDan McGee <dpmcgee@gmail.com>2011-01-10 00:26:33 -0600
commit97ec0b6d39298fec020be2a653c0dbf347406fad (patch)
tree5f3344113a29a799d747077b61d735219fcababa
parent8b19d7ebc401c6b0aca89d1fc1f9c2ad48204f49 (diff)
downloadwebsite-97ec0b6d39298fec020be2a653c0dbf347406fad.tar.gz
website-97ec0b6d39298fec020be2a653c0dbf347406fad.zip
gjslint recommended changes
Signed-off-by: Dan McGee <dpmcgee@gmail.com>
-rw-r--r--media/script-4.js8
1 files changed, 6 insertions, 2 deletions
diff --git a/media/script-4.js b/media/script-4.js
index b066693..e0d1276 100644
--- a/media/script-4.js
+++ b/media/script-4.js
@@ -16,12 +16,16 @@ function makeTagCloud() {
$('span.postcount').hide();
var taglist = $('ul#taglist');
taglist.hide();
- taglist.tagcloud({type:'list', sizemax:24, sizemin:12, colormax:'5b0909', colormin:'7c7c7c'});
+ taglist.tagcloud({
+ type: 'list', sizemax: 24, sizemin: 12,
+ colormax: '5b0909', colormin: '7c7c7c'
+ });
taglist.addClass('tagcloud');
taglist.removeAttr('style');
taglist.children('li').each(
function() {
- $(this).children('a').append('&nbsp;(' + this.getAttribute('value') + ')');
+ $(this).children('a').append(
+ '&nbsp;(' + this.getAttribute('value') + ')');
}
);
taglist.show();