Skip to content
Snippets Groups Projects
Commit 0024962b authored by Patrick Barroca's avatar Patrick Barroca :grin:
Browse files

Merge branch 'hotline#76079_dysfonctionnement_dans_reload_modulejs_' into 'hotline'

hotline #76079 : fix js error

See merge request !2693
parents 051671df 8ed8ed0d
Branches
Tags
3 merge requests!2695Master,!2694Hotline,!2693hotline #76079 : fix js error
Pipeline #4343 passed with stage
in 34 minutes and 38 seconds
- ticket #76079 : Boites : correction d'une erreur javascript
\ No newline at end of file
......@@ -5,14 +5,24 @@
$.get(url, function(data) {
var new_content= $(data).children();
boite.empty().append(new_content);
initializeDivisionFive();
initializePopups();
if (typeof initializeDivisionFive != "undefined")
initializeDivisionFive();
if (typeof initializePopups != "undefined")
initializePopups();
initializeReloadModule();
initOpenStreetMap(boite);
setupAnchorsTarget();
if (typeof initOpenStreetMap != "undefined")
initOpenStreetMap(boite);
if (typeof setupAnchorsTarget != "undefined")
setupAnchorsTarget();
boite
.boiteSlideToRight()
.boiteShowContent();
.boiteShowContent();
});
return this;
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment