This repository was archived by the owner on Dec 11, 2019. It is now read-only.
File tree 4 files changed +6
-4
lines changed
4 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -46,13 +46,15 @@ class WidevineInfo extends ImmutableComponent {
46
46
< span style = { widevineInfoIconStyle }
47
47
className = 'fa fa-info-circle'
48
48
onClick = { this . onMoreInfo }
49
+ title = { appConfig . widevine . moreInfoUrl }
49
50
/>
50
51
</ div >
51
52
< div className = 'subtext' >
52
53
< span data-l10n-id = 'enableWidevineSubtext2' />
53
54
< span style = { widevineInfoIconStyle }
54
55
className = 'fa fa-info-circle'
55
56
onClick = { this . onViewLicense }
57
+ title = { appConfig . widevine . licenseUrl }
56
58
/>
57
59
</ div >
58
60
</ div >
Original file line number Diff line number Diff line change @@ -1615,7 +1615,7 @@ class SecurityTab extends ImmutableComponent {
1615
1615
< span data-l10n-id = 'enableFlashSubtext' />
1616
1616
< span className = 'linkText' onClick = { aboutActions . newFrame . bind ( null , {
1617
1617
location : appConfig . flash . installUrl
1618
- } , true ) } > { 'Adobe' } </ span > .
1618
+ } , true ) } title = { appConfig . flash . installUrl } > { 'Adobe' } </ span > .
1619
1619
</ div >
1620
1620
: < div >
1621
1621
< span className = 'fa fa-info-circle' id = 'flashInfoIcon' />
@@ -1627,7 +1627,7 @@ class SecurityTab extends ImmutableComponent {
1627
1627
< span data-l10n-id = 'flashTroubleshooting' />
1628
1628
< span className = 'linkText' onClick = { aboutActions . newFrame . bind ( null , {
1629
1629
location : 'https://github.com/brave/browser-laptop/wiki/Flash-Support-Deprecation-Proposal#troubleshooting-flash-issues'
1630
- } , true ) } > { 'wiki' } </ span > .
1630
+ } , true ) } title = 'https://github.com/brave/browser-laptop/wiki/Flash-Support-Deprecation-Proposal#troubleshooting-flash-issues' > { 'wiki' } </ span > .
1631
1631
</ div >
1632
1632
</ div >
1633
1633
</ SettingsList >
Original file line number Diff line number Diff line change @@ -304,7 +304,7 @@ class BraveryPanel extends ImmutableComponent {
304
304
< option data-l10n-id = 'block3rdPartyCookie' value = 'block3rdPartyCookie' />
305
305
< option data-l10n-id = 'allowAllCookies' value = 'allowAllCookies' />
306
306
</ select >
307
- < SwitchControl onClick = { this . onToggleFp } rightl10nId = 'fingerprintingProtection' checkedOn = { fpEnabled } disabled = { ! shieldsUp } onInfoClick = { this . onInfoClick } className = 'fingerprintingProtectionSwitch' />
307
+ < SwitchControl onClick = { this . onToggleFp } rightl10nId = 'fingerprintingProtection' checkedOn = { fpEnabled } disabled = { ! shieldsUp } onInfoClick = { this . onInfoClick } infoTitle = { config . fingerprintingInfoUrl } className = 'fingerprintingProtectionSwitch' />
308
308
< SwitchControl onClick = { this . onToggleSafeBrowsing } rightl10nId = 'safeBrowsing' checkedOn = { this . props . braverySettings . safeBrowsing } disabled = { ! shieldsUp } />
309
309
</ div >
310
310
</ div > </ span >
Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ class SwitchControl extends ImmutableComponent {
57
57
? < span className = 'switchControlRightText' data-l10n-id = { this . props . rightl10nId } data-l10n-args = { this . props . rightl10nArgs } > { this . props . rightText || '' } </ span >
58
58
: null }
59
59
{ ( this . props . rightl10nId || this . props . rightText ) && this . props . onInfoClick
60
- ? < div className = 'switchControlRightText' > < span data-l10n-id = { this . props . rightl10nId } data-l10n-args = { this . props . rightl10nArgs } > { this . props . rightText } </ span > < span className = 'fa fa-question-circle info clickable' onClick = { this . props . onInfoClick } /> </ div >
60
+ ? < div className = 'switchControlRightText' > < span data-l10n-id = { this . props . rightl10nId } data-l10n-args = { this . props . rightl10nArgs } > { this . props . rightText } </ span > < span className = 'fa fa-question-circle info clickable' onClick = { this . props . onInfoClick } title = { this . props . infoTitle } /> </ div >
61
61
: null }
62
62
</ div >
63
63
}
You can’t perform that action at this time.
0 commit comments