Feedback about webworkers

pull/1/head
yflory 2017-12-06 18:32:48 +01:00
parent e397f66b56
commit 604ea1c95f
1 changed files with 8 additions and 0 deletions

View File

@ -626,6 +626,14 @@ define([
if (typeof(Symbol) === 'undefined') {
Feedback.send('NO_SYMBOL');
}
if (typeof(SharedWorker) === "undefined") {
Feedback.send('NO_SHAREDWORKER');
}
if (typeof(Worker) === "undefined") {
Feedback.send('NO_WEBWORKER');
}
Feedback.reportScreenDimensions();
Feedback.reportLanguage();
};