/*! * Validar Campos v1.0.0 * Copyright 2016 GYGTIC S.A.C. * Licensed under the MIT license */ function jsAlert(titulo, texto, codigo){ switch (codigo) { case 0: toastr.success(texto,titulo, { "closeButton": true, //"positionClass": "toast-bottom-full-width", "positionClass": "toast-top-right", "progressBar": true }); break; case 1: toastr.error(texto,titulo, { "closeButton": true, //"positionClass": "toast-bottom-full-width", "positionClass": "toast-top-right", "progressBar": true }); break; default: toastr.warning(texto,titulo, { "closeButton": true, //"positionClass": "toast-bottom-full-width", "positionClass": "toast-top-right", "progressBar": true }); } }