Your IP : 216.73.216.227


Current Path : /home/users/unlimited/www/facebook.codeskitter.site/admin-panel/assets/js/examples/
Upload File :
Current File : /home/users/unlimited/www/facebook.codeskitter.site/admin-panel/assets/js/examples/toast.js

'use strict';
$(document).ready(function () {

    var doc = $(document);

    toastr.options = {
        timeOut: 3000,
        progressBar: true,
        showMethod: "slideDown",
        hideMethod: "slideUp",
        showDuration: 200,
        hideDuration: 200
    };

    doc.on('click', '.toastr-examples a.btn-success', function () {
        toastr.success('Successfully completed');
        return false;
    });

    doc.on('click', '.toastr-examples a.btn-danger', function () {
        toastr.error('Something went wrong');
        return false;
    });

    doc.on('click', '.toastr-examples a.btn-info', function () {
        toastr.info('This is an informational message');
        return false;
    });

    doc.on('click', '.toastr-examples a.btn-warning', function () {
        toastr.warning('You are currently not authorized');
        return false;
    });

});