﻿

$(document).ready(function () {

    //Set default enter button
    $(".enter-submit").live("keypress", function (e) {
        if ($(this).parents(".enter-form").find(".submit-button").length <= 0) return true;

        if ((e.which && e.which == 13) || (e.keyCode && e.keyCode == 13)) {

            $(this).parents(".enter-form").find(".submit-button").click();
            return false;
        } else {
            return true;
        }
    });


    //Set Message Modal popup 
    $("#dialog").dialog({
        autoOpen: false,
        title: 'Message',
        height: 120,
        resizable: false
    })

    $("#closeDialog").click(function () {
        $("#dialog").dialog('close');
        return false;
    })

});
