Skip to content

Get Pot Price in Title

Andrew Dassonville edited this page Nov 17, 2015 · 1 revision

To get the pot price in the web page title, go to the script.js file and edit the update() function. You will need to add something like document.title = "$"+(parseInt(potPrice)/100).toFixed(2)+" Your Page Name";

function update () {
    $.getJSON('php/update.php', function (jsonObj) {
        //console.log(JSON.stringify(jsonObj));
        handleJsonResponse(jsonObj, function (data) {
            var chat = data['chat'],
                pot = data['pot'],
                potPrice = data['potPrice'],
                mostRecentGame = data['mostRecentGame'];
            document.title = "$"+(parseInt(potPrice)/100).toFixed(2)+" Your Page Name";
        });
    });
}
Clone this wiki locally