Subversion-Projekte lars-tiefland.shop_ns

Revision

Blame | Letzte Änderung | Log anzeigen | RSS feed

$(function(){
    $('#email_error_dlg').dialog('destroy');
    $('#email_error_dlg').dialog({
        autoOpen: false,
        height: "auto",
        width: 650,
        modal: true,
        resizable: false,
        draggable: false,
        buttons: {
            'weiter ohne Login': function(){
                $('#continue_email').val("1");
                $('#buy_form').submit();
                $(this).dialog('close');
            },
            'zum Login': function(){
                self.location.href='/index.php?mode=login';
            }
        },
        close: function(){
            
        }
    });
    $('#send_pw_button').click(function(){
        ret = confirm("Möchten Sie sich wirklich ein neues Passwort zuschicken lassen?");
        return ret;
    })
function show_email_error_dlg()
{
    $('#email_error_dlg').dialog('open');
}
});