diff options
author | Andrea Lepori <aleporia@gmail.com> | 2024-11-15 12:49:05 +0100 |
---|---|---|
committer | Andrea Lepori <aleporia@gmail.com> | 2024-11-15 12:49:05 +0100 |
commit | fb848d7fefb46ed3d0eb1ded4b7db4f0ff29310d (patch) | |
tree | db0d883b8610053fec8bc2ce6bed8cd36a725110 /templates/registration | |
parent | add option to change to new css (diff) | |
download | scout-subs-fb848d7fefb46ed3d0eb1ded4b7db4f0ff29310d.tar.gz scout-subs-fb848d7fefb46ed3d0eb1ded4b7db4f0ff29310d.zip |
move collapisible outside of modal
Diffstat (limited to '')
-rw-r--r-- | templates/registration/base_client.html | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/templates/registration/base_client.html b/templates/registration/base_client.html index 104b006..89a7eca 100644 --- a/templates/registration/base_client.html +++ b/templates/registration/base_client.html @@ -181,7 +181,8 @@ <script type="text/javascript" src="{% static 'lazyload.js' %}"></script> <script> $(document).ready(function(){ - $('.tooltipped').tooltip(); + var elems = document.querySelectorAll('.tooltipped'); + var instances = M.Tooltip.init(elems, {}); }); document.addEventListener('DOMContentLoaded', function() { |