Skip to content
Snippets Groups Projects
Commit 95596798 authored by Benoit Alessandroni's avatar Benoit Alessandroni
Browse files

Fixing the login process loader

parent d678654c
No related branches found
No related tags found
1 merge request!121Adding loaders to the login process
...@@ -573,6 +573,13 @@ XXXXXXXXXXXXXXXXXXXXXXXXXXXX ON LOAD XXXXXXXXXXXXXXXXXXXXXXX ...@@ -573,6 +573,13 @@ XXXXXXXXXXXXXXXXXXXXXXXXXXXX ON LOAD XXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX*/ XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX*/
jQuery(document).ready(function($) { jQuery(document).ready(function($) {
window.addEventListener('requestNavigation', function(e) {
setTimeout(function() {
let loader = document.getElementById('main-loader');
loader.setAttribute('hidden', true);
}, 2000);
});
//Set the share links //Set the share links
$(".twitter-link").on("populate", function (e) { $(".twitter-link").on("populate", function (e) {
var regexMentor = /mentor/g var regexMentor = /mentor/g
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment