-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fix iframe error (#310) * Check for headless mode bfore removing notifications * Add reason property to documentation * Fix config validation for minimumBalance (#312) * Enhancement/supported browsers (#314) * add more supported browsers * opera and brave logos * opera touch * add images with correct sizing so not pixelated on retina display * updated to version 0.9.1
- Loading branch information
Showing
15 changed files
with
90 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 13 additions & 1 deletion
14
src/__integration-tests__/ui-rendering/__snapshots__/index.test.js.snap
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -58,6 +58,15 @@ import trustLogo2x from '../../../lib/images/[email protected]' | |
import coinbaseLogo from '../../../lib/images/coinbase.png' | ||
import coinbaseLogo2x from '../../../lib/images/[email protected]' | ||
|
||
import braveLogo from '../../../lib/images/brave.png' | ||
import braveLogo2x from '../../../lib/images/[email protected]' | ||
|
||
import operaLogo from '../../../lib/images/opera.png' | ||
import operaLogo2x from '../../../lib/images/[email protected]' | ||
|
||
import operaTouchLogo from '../../../lib/images/opera-touch.png' | ||
import operaTouchLogo2x from '../../../lib/images/[email protected]' | ||
|
||
export const notSupported = { | ||
mobileNotSupported: { | ||
heading: 'Mobile Not Supported', | ||
|
@@ -67,12 +76,14 @@ export const notSupported = { | |
browserNotSupported: { | ||
heading: 'This Browser is Not Supported', | ||
description: () => | ||
`This Dapp is not supported in ${state.userAgent.browser.name}. Please visit us in one of the following browsers. Thank You!` | ||
`This Dapp is not supported in ${ | ||
state.userAgent.browser.name | ||
}. Please visit us in one of the following browsers. Thank You!` | ||
}, | ||
mobileWalletNotSupported: { | ||
heading: 'Install A Mobile Dapp Wallet', | ||
description: () => | ||
'A mobile ethereum wallet is needed to use this dapp. We recommend Trust or Coinbase wallet.' | ||
'A mobile ethereum wallet is needed to use this dapp. We recommend one of the following mobile wallets.' | ||
} | ||
} | ||
|
||
|
@@ -293,6 +304,18 @@ export const imageSrc = { | |
src: coinbaseLogo, | ||
srcset: coinbaseLogo2x | ||
}, | ||
braveLogo: { | ||
src: braveLogo, | ||
srcset: braveLogo2x | ||
}, | ||
operaLogo: { | ||
src: operaLogo, | ||
srcset: operaLogo2x | ||
}, | ||
operaTouchLogo: { | ||
src: operaTouchLogo, | ||
srcset: operaTouchLogo2x | ||
}, | ||
mobileWallet: { | ||
src: mobileWallet, | ||
srcset: mobileWallet2x | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters