function checkFormSendable()

in src/main/resources/assets/script.js [91:97]


function checkFormSendable() {
    if($.trim($("#template").val()) === "" ) {
        showResult("Template was empty; nothing to do.", true);
        return false;
    }
    return true;
}