[ Mini Kiebo ]
Server: Windows NT DESKTOP-5B8S0D4 6.2 build 9200 (Windows 8 Professional Edition) i586
Path:
D:
/
Backup
/
05122024
/
htdocs
/
siakad
/
simpeg
/
login
/
scripts
/
ui
/
[
Home
]
File: toastr.js
'use strict'; /** * @author Batch Themes Ltd. */ (function() { $(function() { $('.btn-toast').on('click', function() { var type = $(this).data('type'); if (type === 'success') { toastr.options = { positionClass: 'toast-top-right' }; toastr.success('Great idea!'); } if (type === 'warning') { toastr.options = { positionClass: 'toast-bottom-right' }; toastr.warning('Warning!'); } if (type === 'danger') { toastr.options = { positionClass: 'toast-bottom-left' }; toastr.error('Danger!'); } if (type === 'info') { toastr.options = { positionClass: 'toast-top-left' }; toastr.info('Excellent!'); } }); }); })();