/* Minification failed. Returning unminified contents.
(14,1): run-time error CSS1019: Unexpected token, found '$'
(14,2): run-time error CSS1019: Unexpected token, found '('
(14,3): run-time error CSS1019: Unexpected token, found '"input"'
(14,10): run-time error CSS1019: Unexpected token, found ')'
(14,12): run-time error CSS1030: Expected identifier, found 'keypress('
(14,12): run-time error CSS1019: Unexpected token, found 'keypress('
(14,30): run-time error CSS1031: Expected selector, found '('
(14,30): run-time error CSS1025: Expected comma or open brace, found '('
(19,2): run-time error CSS1019: Unexpected token, found ')'
 */
/*
    *   eccApp.js
    *   Glenn Hall, Web Application Developer
    *   State Treasurer's Office, CalCapWeb
    *
    *   Description:
    *   - Used to allow the user to submit the form by 
    *   hitting the enter key.
    *   
    *   Status:
    *   It is currently being used by this application
*/

$("input").keypress(function (event) {
    if (event.which === 13) {
        event.preventDefault();
        $("form").submit();
    }
});
