Skip to content

Commit 945c2ea

Browse files
committed
partial support
1 parent f1dd3ad commit 945c2ea

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

_js/compare.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,7 @@ permalink: "/assets/js/compare.js"
299299
let features = this.buildFeaturesBySupportObject();
300300
this.buildResultsAsTable(features.m, 'Mixed support');
301301
this.buildResultsAsTags(features.y, 'Supported', 'supported');
302-
this.buildResultsAsTags(features.a, 'Partial support', 'mitigated');
302+
this.buildResultsAsTags(features.a, 'Partial support', 'partial');
303303
this.buildResultsAsTags(features.n, 'Not supported', 'unsupported');
304304
this.buildResultsAsTags(features.u, 'Support unknown', 'unknown');
305305
}

tools/baseline.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -108,9 +108,9 @@ fetch(`http://unpkg.com/@mdn/browser-compat-data@${bcdVersion}/data.json`)
108108
}
109109
if (anySupported) {
110110
stats[platform][sub] = {
111-
"partial": 'y',
112-
"supported_keys": supportedKeys,
113-
"unsupported_keys": unsupportedKeys
111+
"*": 'a',
112+
//"supported_keys": supportedKeys,
113+
//"unsupported_keys": unsupportedKeys
114114
};
115115
} else {
116116
stats[platform][sub] = {

0 commit comments

Comments
 (0)