lower hyperscript to support older version of iOS
This commit is contained in:
parent
27f6615a18
commit
1dc0130f31
2 changed files with 7 additions and 2 deletions
|
@ -22,7 +22,7 @@
|
|||
};
|
||||
</script>
|
||||
<script src="https://cdn.staticfile.org/htmx/1.9.2/htmx.min.js"></script>
|
||||
<script src="{% static 'lib/js/hyperscript-0.9.7.min.js' %}"></script>
|
||||
<script src="https://unpkg.com/hyperscript.org@0.9.5"></script>
|
||||
<link rel="stylesheet"
|
||||
href="https://unpkg.com/@picocss/pico@2.0.0-alpha1/css/pico.min.css" />
|
||||
<link href="{% sass_src 'scss/neodb.scss' %}"
|
||||
|
|
|
@ -18,7 +18,12 @@
|
|||
<script src="https://cdn.jsdelivr.net/npm/@tarekraafat/autocomplete.js@10.2.7/dist/autoComplete.min.js"></script>
|
||||
{% include "common_libs.html" with jquery=0 v2=1 %}
|
||||
<script src="https://cdn.staticfile.org/js-cookie/3.0.1/js.cookie.min.js"></script>
|
||||
<script> $(document).ready(function () { $('.delayed').remove(); $('#loginButton').prop("disabled", false); }); </script>
|
||||
<script>
|
||||
$(document).ready(function () {
|
||||
if (!window.htmx || !window._hyperscript) return; // disable login if cash, htmx or hyperscript not loaded
|
||||
$('.delayed').remove(); $('#loginButton').prop("disabled", false);
|
||||
});
|
||||
</script>
|
||||
<style type="text/css">
|
||||
.delayed {
|
||||
animation: 10s _fadeIn;
|
||||
|
|
Loading…
Add table
Reference in a new issue