revert brave detection as it doesn't work
This commit is contained in:
parent
0ae6ce43f2
commit
94d54c0f1a
@ -1140,31 +1140,6 @@ define([
|
|||||||
window.RTCPeerConnection);
|
window.RTCPeerConnection);
|
||||||
};
|
};
|
||||||
|
|
||||||
common.isBrave = function () { // Courtesy of https://www.ctrl.blog/entry/brave-user-agent-detection
|
|
||||||
try {
|
|
||||||
// initial assertions
|
|
||||||
if (!window.google_onload_fired && navigator.userAgent && !navigator.userAgent.includes('Chrome')) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
// set up test
|
|
||||||
var test = document.createElement('iframe');
|
|
||||||
test.style.display = 'none';
|
|
||||||
document.body.appendChild(test);
|
|
||||||
|
|
||||||
// empty frames only have this attribute set in Brave Shield
|
|
||||||
var is_brave = (test.contentWindow.google_onload_fired === true);
|
|
||||||
|
|
||||||
// teardown test
|
|
||||||
test.parentNode.removeChild(test);
|
|
||||||
|
|
||||||
return is_brave;
|
|
||||||
} catch (e) { // just in case...
|
|
||||||
console.error(e);
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
common.ready = (function () {
|
common.ready = (function () {
|
||||||
var env = {};
|
var env = {};
|
||||||
var initialized = false;
|
var initialized = false;
|
||||||
@ -1212,10 +1187,6 @@ define([
|
|||||||
Feedback.send('NO_CSS_VARIABLES');
|
Feedback.send('NO_CSS_VARIABLES');
|
||||||
}
|
}
|
||||||
|
|
||||||
if (common.isBrave()) {
|
|
||||||
Feedback.send('BRAVE_BROWSER');
|
|
||||||
}
|
|
||||||
|
|
||||||
Feedback.reportScreenDimensions();
|
Feedback.reportScreenDimensions();
|
||||||
Feedback.reportLanguage();
|
Feedback.reportLanguage();
|
||||||
};
|
};
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user