summaryrefslogtreecommitdiff
path: root/qutebrowser/javascript/quirks/globalthis.user.js
blob: b87a956e545190c380823be05f8cab47cdcb6e2b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// ==UserScript==
// @include https://www.reddit.com/*
// @include https://open.spotify.com/*
// @include https://*.stackexchange.com/*
// @include https://stackoverflow.com/*
// @include https://test.qutebrowser.org/*
// ==/UserScript==

// Polyfill for a failing globalThis with older Qt versions.

"use strict";
window.globalThis = window;