From b907dca76130101643c75043de16396c8b785082 Mon Sep 17 00:00:00 2001 From: NovemLinguae <79697282+NovemLinguae@users.noreply.github.com> Date: Tue, 23 Apr 2024 01:09:54 -0700 Subject: [PATCH] change "reloaded automatically" to "reload" (#345) It doesn't auto refresh the page for you, so is factually incorrect. --- src/modules/submissions.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/submissions.js b/src/modules/submissions.js index f465e55b..ae049460 100644 --- a/src/modules/submissions.js +++ b/src/modules/submissions.js @@ -1330,7 +1330,7 @@ // Also, automagically reload the page in place $( '#mw-content-text' ).load( AFCH.consts.pagelink + ' #mw-content-text', function () { - $afch.find( '#reloadLink' ).text( '(reloaded automatically)' ); + $afch.find( '#reloadLink' ).text( '(reload)' ); // Fire the hook for new page content mw.hook( 'wikipage.content' ).fire( $( '#mw-content-text' ) ); } );