From f7a320b58c0b66673f824f1a7c95b952ea69383d Mon Sep 17 00:00:00 2001 From: Mike Gerwitz Date: Wed, 8 Nov 2017 11:56:24 -0500 Subject: [PATCH] Remove paragraph from dev dialog It lies now. * src/client/debug/ClientDebugDialog.js (_createDialog): Remove paragraph. Adjust case on keybinding text. --- src/client/debug/ClientDebugDialog.js | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/client/debug/ClientDebugDialog.js b/src/client/debug/ClientDebugDialog.js index 01e555f..1ad0e7d 100644 --- a/src/client/debug/ClientDebugDialog.js +++ b/src/client/debug/ClientDebugDialog.js @@ -182,14 +182,10 @@ module.exports = Class( 'ClientDebugDialog' ) this._showSidebarWarning(); return $( '
' ) - .append( $( '

' ).text( - "Everything in this dialog can be done via the console. " + - "This simply exists to make life easier." - ) ) .append( $( '

' ).html( "To view this dialog: " + "one can use the key combination " + - "CTRL+SHIFT+D, or getProgramDebug()" + + "Ctrl+Shift+D, or getProgramDebug()" + ".toggle() from the console. The latter may " + "also be used even if the user is not logged in internally." ) )