This commit is contained in:
calzoneman 2013-05-11 15:21:14 -04:00
parent 2622aaac41
commit 369517945b
4 changed files with 14 additions and 14 deletions

View file

@ -101,7 +101,7 @@ $(window).resize(function() {
// Match URLs of the form http://site.tld/r/channel
var loc = document.location+"";
var m = loc.match(/\/r\/([a-zA-Z0-9]+)$/);
var m = loc.match(/\/r\/([a-zA-Z0-9-_]+)$/);
if(m) {
CHANNEL = m[1];
}