This commit is contained in:
Henry Zhu
2016-12-05 12:36:47 -05:00
parent a238bf368a
commit 6ffd13af85
6 changed files with 25 additions and 34 deletions

View File

@@ -137,9 +137,9 @@ function generateData(features) {
// add opera
if (plugin.chrome) {
plugin.opera = plugin.chrome - 13;
if (plugin.chrome === 5) {
if (plugin.chrome >= 28) {
plugin.opera = plugin.chrome - 13;
} else if (plugin.chrome === 5) {
plugin.opera = 12;
}
}