Subversion-Projekte lars-tiefland.shop_ns

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
5 lars 1
$(function(){
2
    $('#email_error_dlg').dialog('destroy');
3
    $('#email_error_dlg').dialog({
4
        autoOpen: false,
5
        height: "auto",
6
        width: 650,
7
        modal: true,
8
        resizable: false,
9
        draggable: false,
10
        buttons: {
11
            'weiter ohne Login': function(){
12
                $('#continue_email').val("1");
13
                $('#buy_form').submit();
14
                $(this).dialog('close');
15
            },
16
            'zum Login': function(){
17
                self.location.href='/index.php?mode=login';
18
            }
19
        },
20
        close: function(){
21
 
22
        }
23
    });
24
    $('#send_pw_button').click(function(){
25
        ret = confirm("Möchten Sie sich wirklich ein neues Passwort zuschicken lassen?");
26
        return ret;
27
    })
28
function show_email_error_dlg()
29
{
30
    $('#email_error_dlg').dialog('open');
31
}
32
});