/*
 * (c) 2018
 * msg.js
 *
 */

function exibe_msg() {
    $.ajax({
        type: 'POST',
        url: _URL_BASE_+'msg',
        data: { },
        dataType: 'text',
        success: function(data) {
            if (data.trim() != '') {
                exibe_modal('TicketNext', data, 'sm');

                $.ajax({
                    type: 'POST',
                    url: _URL_BASE_+'msg/limpa',
                    data: { },
                    dataType: 'text',
                    success: function(data) { }
                });
            }
        }
    });
}
