mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2024-11-23 07:38:07 -05:00
Merge pull request #2645 from chrisgarrity/revise-unsupported-browser
Revise unsupported browser
This commit is contained in:
commit
6cd2b38ad1
1 changed files with 1 additions and 7 deletions
|
@ -5,11 +5,5 @@ import bowser from 'bowser';
|
||||||
* @returns {boolean} False if the platform is definitely not supported.
|
* @returns {boolean} False if the platform is definitely not supported.
|
||||||
*/
|
*/
|
||||||
export default function () {
|
export default function () {
|
||||||
if (bowser.msie ||
|
return !bowser.msie;
|
||||||
bowser.vivaldi ||
|
|
||||||
bowser.opera ||
|
|
||||||
bowser.silk) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
return true;
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue