Spade

Mini Shell

Directory:~$ /home/lmsyaran/public_html/j3/media/com_helpdeskpro/js/
Upload File

[Home] [System Details] [Kill Me]
Current File:~$ /home/lmsyaran/public_html/j3/media/com_helpdeskpro/js/admin-ticket-default.js

function addComment(form) {
    if (form.message.value === '') {
        alert(Joomla.JText._('HDP_ENTER_COMMENT_FOR_TICKET'));
        form.message.focus();
        return;
    }

    form.task.value = 'ticket.add_comment';
    form.submit();
}

function addCommentAndClose(form) {
    if (form.message.value === '') {
        alert(Joomla.JText._('HDP_ENTER_COMMENT_FOR_TICKET'));
        form.message.focus();
        return;
    }

    form.task.value = 'ticket.comment_and_close';

    form.submit();
}

function convertToArticle(form) {
    form.task.value = 'ticket.convert_to_kb';
    form.submit();
}