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

hotline #76079 : fix js error

parent cc8a8a38
Branches
Tags
3 merge requests!2695Master,!2694Hotline,!2693hotline #76079 : fix js error
Pipeline #4341 passed with stage
in 36 minutes and 55 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