File tree Expand file tree Collapse file tree 16 files changed +83
-215
lines changed Expand file tree Collapse file tree 16 files changed +83
-215
lines changed Original file line number Diff line number Diff line change @@ -485,7 +485,7 @@ class Nav extends React.PureComponent {
485
485
}
486
486
} }
487
487
>
488
- < span className = "nav__item-header" > Help & Feedback </ span >
488
+ < span className = "nav__item-header" > Help</ span >
489
489
< InlineSVG className = "nav__item-header-triangle" src = { triangleUrl } />
490
490
</ button >
491
491
< ul className = "nav__dropdown" >
@@ -519,16 +519,6 @@ class Nav extends React.PureComponent {
519
519
About
520
520
</ Link >
521
521
</ li >
522
- < li className = "nav__dropdown-item" >
523
- < Link
524
- to = "/feedback"
525
- onFocus = { this . handleFocusForHelp }
526
- onBlur = { this . handleBlur }
527
- onClick = { this . setDropdownForNone }
528
- >
529
- Feedback
530
- </ Link >
531
- </ li >
532
522
</ ul >
533
523
</ li >
534
524
</ ul >
Original file line number Diff line number Diff line change @@ -281,7 +281,7 @@ exports[`Nav renders correctly 1`] = `
281
281
<span
282
282
className = " nav__item-header"
283
283
>
284
- Help & Feedback
284
+ Help
285
285
</span >
286
286
<span
287
287
className = " isvg loading nav__item-header-triangle"
@@ -327,18 +327,6 @@ exports[`Nav renders correctly 1`] = `
327
327
About
328
328
</a >
329
329
</li >
330
- <li
331
- className = " nav__dropdown-item"
332
- >
333
- <a
334
- onBlur = { [Function ]}
335
- onClick = { [Function ]}
336
- onFocus = { [Function ]}
337
- style = { Object {}}
338
- >
339
- Feedback
340
- </a >
341
- </li >
342
330
</ul >
343
331
</li >
344
332
</ul >
Original file line number Diff line number Diff line change @@ -116,9 +116,6 @@ export const HIDE_ERROR_MODAL = 'HIDE_ERROR_MODAL';
116
116
export const PERSIST_STATE = 'PERSIST_STATE' ;
117
117
export const CLEAR_PERSISTED_STATE = 'CLEAR_PERSISTED_STATE' ;
118
118
119
- export const SHOW_HELP_MODAL = 'SHOW_HELP_MODAL' ;
120
- export const HIDE_HELP_MODAL = 'HIDE_HELP_MODAL' ;
121
-
122
119
export const HIDE_RUNTIME_ERROR_WARNING = 'HIDE_RUNTIME_ERROR_WARNING' ;
123
120
export const SHOW_RUNTIME_ERROR_WARNING = 'SHOW_RUNTIME_ERROR_WARNING' ;
124
121
export const SET_ASSETS = 'SET_ASSETS' ;
Original file line number Diff line number Diff line change @@ -232,19 +232,6 @@ export function hideErrorModal() {
232
232
} ;
233
233
}
234
234
235
- export function showHelpModal ( helpType ) {
236
- return {
237
- type : ActionTypes . SHOW_HELP_MODAL ,
238
- helpType
239
- } ;
240
- }
241
-
242
- export function hideHelpModal ( ) {
243
- return {
244
- type : ActionTypes . HIDE_HELP_MODAL
245
- } ;
246
- }
247
-
248
235
export function hideRuntimeErrorWarning ( ) {
249
236
return {
250
237
type : ActionTypes . HIDE_RUNTIME_ERROR_WARNING
Original file line number Diff line number Diff line change @@ -77,7 +77,7 @@ class Console extends React.Component {
77
77
} ) ;
78
78
79
79
return (
80
- < div className = { consoleClass } role = "main" title = "console" >
80
+ < div className = { consoleClass } role = "main" >
81
81
< div className = "preview-console__header" >
82
82
< h2 className = "preview-console__header-title" > Console</ h2 >
83
83
< div className = "preview-console__header-buttons" >
Original file line number Diff line number Diff line change @@ -70,7 +70,6 @@ class CopyableInput extends React.Component {
70
70
rel = "noopener noreferrer"
71
71
href = { value }
72
72
className = "copyable-input__preview"
73
- title = { `open ${ label . toLowerCase ( ) } view in new tab` }
74
73
>
75
74
< InlineSVG src = { shareUrl } alt = { `open ${ label } view in new tab` } />
76
75
</ a >
Original file line number Diff line number Diff line change @@ -312,7 +312,6 @@ class Editor extends React.Component {
312
312
313
313
return (
314
314
< section
315
- title = "code editor"
316
315
role = "main"
317
316
className = { editorSectionClass }
318
317
>
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -92,7 +92,7 @@ class Preferences extends React.Component {
92
92
const beep = new Audio ( beepUrl ) ;
93
93
94
94
return (
95
- < section className = "preferences" title = "preference-menu" >
95
+ < section className = "preferences" >
96
96
< Helmet >
97
97
< title > p5.js Web Editor | Preferences</ title >
98
98
</ Helmet >
Original file line number Diff line number Diff line change @@ -360,7 +360,7 @@ class PreviewFrame extends React.Component {
360
360
aria-label = "sketch output"
361
361
role = "main"
362
362
frameBorder = "0"
363
- title = "sketch output "
363
+ title = "sketch preview "
364
364
ref = { ( element ) => { this . iframeElement = element ; } }
365
365
sandbox = "allow-scripts allow-pointer-lock allow-same-origin allow-popups allow-forms allow-modals"
366
366
/>
You can’t perform that action at this time.
0 commit comments