You are on page 1of 1

var valor_parada=0.

000030;

var profit_atual=parseFloat($('#auto_stats_profit').text());

$('#history-my-bets-dice').unbind();

$('#history-my-bets-dice').bind("DOMSubtreeModified",function(event){
if( $(event.currentTarget) ){
if(valor_parada < profit_atual){
$('#btn-bet-stop-pilot-dice').trigger('click');
}
profit_atual=parseFloat($('#auto_stats_profit').text());
}
});

You might also like