From e2903a12516b5da357d79a83739bf3245bff1c15 Mon Sep 17 00:00:00 2001 From: Maxwell Salzberg Date: Fri, 11 Mar 2011 00:12:48 -0800 Subject: [PATCH] get rid of the period, it might be screwing stuff up --- public/javascripts/stream.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/javascripts/stream.js b/public/javascripts/stream.js index ec6fd0545..ffcd7c034 100644 --- a/public/javascripts/stream.js +++ b/public/javascripts/stream.js @@ -12,7 +12,7 @@ var Stream = { $stream.not(".show").delegate("a.show_post_comments", "click", Stream.toggleComments); //audio linx $(".stream a[target='_blank']").each(function(){ - if($(this).attr('href').match(/\.mp3$||\.ogg$/)) { + if($(this).attr('href').match(/mp3$||ogg$/)) { $(this).parent().html("");} });