Guest User

Untitled

a guest
Feb 20th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. function cuenta() {$.getJSON('/ES/Account/Balance', "", mostrarCuenta);}
  2. function mostrarCuenta(datos) {
  3. if (datos.length > 0){
  4. var mensaje = '<span class="cash"> CASH: <span class="real"> $ ' + datos.r.Cash + '</span></span>' +
  5. '<span class="cash"> BONUS: <span class="real"> $ ' + datos.r.Bonus + '</span></span>';
  6. if(datos.r.JogueGratis != '0'){mensaje += '<span class="cash"> DINERO FICTICIO: <span class="ficticio"> $ ' + datos.r.JogueGratis + '</span></span>';
  7. }else
  8. document.location.href = '/';
  9. }
Add Comment
Please, Sign In to add comment