mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2024-11-22 23:27:54 -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.
|
||||
*/
|
||||
export default function () {
|
||||
if (bowser.msie ||
|
||||
bowser.vivaldi ||
|
||||
bowser.opera ||
|
||||
bowser.silk) {
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
return !bowser.msie;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue