Die Seite wurde neu angelegt: „→Das folgende JavaScript wird für alle Benutzer geladen.: mw.hook( 've.activationComplete' ).add( function() { alert('test'); } );“ |
Keine Bearbeitungszusammenfassung |
||
Zeile 1: | Zeile 1: | ||
/* Das folgende JavaScript wird für alle Benutzer geladen. */ | /* Das folgende JavaScript wird für alle Benutzer geladen. */ | ||
mw.hook( 've.activationComplete' ).add( function() { | mw.hook( 've.activationComplete' ).add( function() { | ||
$(window).bind('beforeunload', function() { | |||
return 'Möchten Sie die Seite wirklich verlassen?'; | |||
}); | |||
} ); | } ); |
Version vom 1. Februar 2016, 16:33 Uhr
/* Das folgende JavaScript wird für alle Benutzer geladen. */
mw.hook( 've.activationComplete' ).add( function() {
$(window).bind('beforeunload', function() {
return 'Möchten Sie die Seite wirklich verlassen?';
});
} );