From 7ff1c3874c7a5602819741c47554c050100e4cae Mon Sep 17 00:00:00 2001 From: Eduardo Malherbi Date: Fri, 30 Jun 2017 11:36:53 -0300 Subject: [PATCH] add toast bottom --- app/js/app.js | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/app/js/app.js b/app/js/app.js index 22aee14..0006394 100644 --- a/app/js/app.js +++ b/app/js/app.js @@ -126,4 +126,22 @@ $(document).ready(function() { Resume.pdf(); // init EN.show(); + // + toastr.options = { + "closeButton": false, + "debug": false, + "newestOnTop": false, + "progressBar": false, + "positionClass": "toast-bottom-center", + "preventDuplicates": false, + "onclick": null, + "showDuration": "300", + "hideDuration": "1000", + "timeOut": "5000", + "extendedTimeOut": "1000", + "showEasing": "swing", + "hideEasing": "linear", + "showMethod": "fadeIn", + "hideMethod": "fadeOut" + }; });