Codekit Uglify.js "Unexpected token-punc' Fehler

Ich bin mir nicht sicher, wo mein syntax /unexpected token Fehler ist

Voll meine jQuery-Funktion auf jsfiddle:
http://jsfiddle.net/leongaban/gmRUa/

Die Fehler, die ich immer bin:

The following error information applies to that file: 

 'Unexpected token punc, expected punc',
  line: 160,
  col: 29,
  pos: 5212,

Codekit Uglify.js

Entspricht der Linie 30 von mein jsfiddle die Zeile mit der } catch {

Merkst du, was den Fehler verursacht es?

Die Funktion:

//REGISTER
var wireRegisterForm = function (form) {

console.log('inside wireRegisterForm');
var $form = $(form);

//form being submitted
$form.find('button').unbind('click').bind('click', function () {
    if (WORLD.validation.validateRegisterForm($form)) {

        var params = {
            "email":$form.find('#register-email').val(),
            "firstName":$form.find('#register-firstname').val(),
            "lastName":$form.find('#register-lastname').val(),
            "password":$form.find('#register-password').val()
        };

        //fill params with parameters from form
        WORLD.networking.postToServerWithAjax('/login', params, function (response) {

            //check successful or not from response object
            try {
                var isSuccessful = response.wassuccessful;
                if (isSuccessful === true) {
                    loginSuccess();
                } else {
                    //login failed
                }
            } catch {
                //login failed
            }

        });

        }

        //stop the form submit
        return false;
    });

    //enter clicked from password box
    $form.find("input[name='password']").unbind('keyup').bind('keyup', function (event) {
        if (event.keyCode === 13) {
            this.find("button").click();
        }
    });
};

InformationsquelleAutor Leon Gaban | 2013-06-26

Schreibe einen Kommentar