Last active
June 30, 2016 12:25
-
-
Save adispen/4182ed84380846dc0ae1 to your computer and use it in GitHub Desktop.
BTTV Theater Viewer Numbers
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$("div.player-livestatus__online").text(function(){ | |
return $(".live-count").text() + "Viewers"; | |
}) | |
$(".live-count").bind("DOMSubtreeModified", function(){ | |
$("div.player-livestatus__online").text(function(){ | |
return $(".live-count").text() + "Viewers"; | |
}) | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment