This commit is contained in:
randogoth 2023-05-22 11:28:35 +03:00
parent 361c75c6f7
commit e798a18599
2 changed files with 3 additions and 1 deletions

View file

@ -22,7 +22,8 @@ if ( !Cookies.get('nfcexplorer') ) {
Cookies.set('nfcexplorer', generateUUID()) Cookies.set('nfcexplorer', generateUUID())
} }
cat = document.querySelector('meta[data-category]').content const ua = String(platform.os);
const cat = document.querySelector('meta[data-category]').content
fetch('https://nmns.place/track?' + new URLSearchParams({ fetch('https://nmns.place/track?' + new URLSearchParams({
hash: Cookies.get('nfcexplorer'), hash: Cookies.get('nfcexplorer'),

View file

@ -17,5 +17,6 @@
</section> </section>
{% endblock %} {% endblock %}
{% block scripts %} {% block scripts %}
<script src="{{ SITEURL }}/theme/platform.js"></script>
<script src="{{ SITEURL }}/theme/user.js"></script> <script src="{{ SITEURL }}/theme/user.js"></script>
{% endblock %} {% endblock %}