File tree Expand file tree Collapse file tree 3 files changed +7
-2
lines changed
Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 3838 "secondary" : " Secondary" ,
3939 "success" : " Success" ,
4040 "table" : " Insert Table" ,
41+ "video" : " Insert Video" ,
4142 "videoPlaybackDisabled" : " Video playback is disabled during edit mode" ,
4243 "warning" : " Warning" ,
4344 "white" : " White"
Original file line number Diff line number Diff line change @@ -46,10 +46,12 @@ class ButtonEmbedVideo extends React.Component {
4646 } else {
4747 return (
4848 < button
49+ aria-label = { AlloyEditor . Strings . video }
4950 className = "ae-button"
5051 data-type = "button-embed-video"
5152 onClick = { this . props . requestExclusive }
52- tabIndex = { this . props . tabIndex } >
53+ tabIndex = { this . props . tabIndex }
54+ title = { AlloyEditor . Strings . video } >
5355 < ButtonIcon symbol = "video" />
5456 </ button >
5557 ) ;
Original file line number Diff line number Diff line change @@ -16,10 +16,12 @@ class ButtonItemSelectorImage extends React.Component {
1616 render ( ) {
1717 return (
1818 < button
19+ aria-label = { AlloyEditor . Strings . image }
1920 className = "ae-button"
2021 data-type = "button-image"
2122 onClick = { this . _handleClick }
22- tabIndex = { this . props . tabIndex } >
23+ tabIndex = { this . props . tabIndex }
24+ title = { AlloyEditor . Strings . image } >
2325 < ButtonIcon symbol = "picture" />
2426 </ button >
2527 ) ;
You can’t perform that action at this time.
0 commit comments