mw.hook( 'wikipage.content' ).add( function( $content ) {
  $content.find( 'span.mw-rollback-link a' ).click( function() {
    return confirm( 'Opravdu revertovat?' );
  } );
} );