1 parent e51ee7e commit d3cb561Copy full SHA for d3cb561
1 file changed
site-template/overrides/main.html
@@ -7,21 +7,6 @@
7
8
{% block extrahead %}
9
{{ super() }}
10
- <script>
11
- (function () {
12
- var _get = Storage.prototype.getItem;
13
- var _set = Storage.prototype.setItem;
14
- var SHARED_KEY = '/__consent';
15
- Storage.prototype.getItem = function (key) {
16
- if (key && key.endsWith('.__consent')) return _get.call(this, SHARED_KEY);
17
- return _get.call(this, key);
18
- };
19
- Storage.prototype.setItem = function (key, value) {
20
- if (key && key.endsWith('.__consent')) { _set.call(this, SHARED_KEY, value); return; }
21
- _set.call(this, key, value);
22
23
- })();
24
- </script>
25
<link rel="stylesheet" href="https://www.utplsql.org/assets/topbar.css">
26
<script src="https://www.utplsql.org/assets/topbar.js" defer></script>
27
{% endblock %}
0 commit comments