hash mavigation

This commit is contained in:
mose 2019-08-28 23:29:12 +08:00
parent db33735f26
commit 2d48938e40
2 changed files with 7 additions and 2 deletions

View file

@ -11,6 +11,6 @@ if (/crapaud-fou.gitlab.io\/portail/.test(currentURL)) {
</script>
</head>
<body>
Cette page n'existe pas, mais peut-etre qu'elle existe sur le <a href="https://manifeste.crapaud-fou.org">site du manifeste</a>.
Cette page n'existe pas, mais peut-être qu'elle existe sur le <a href="https://manifeste.crapaud-fou.org">site du manifeste</a>.
</body>
</html>

View file

@ -84,7 +84,6 @@ $(document).ready(function() {
.attr("title", rencontre.titre)
.text(rencontre.titre);
var div = $("<div>").append(quand).append(ou).append($("<br>")).append(titre);
console.log($(".avenir"));
$(".avenir ul").append(div);
});
$.each(data.passe, function(index, rencontre) {
@ -123,4 +122,10 @@ $(document).ready(function() {
});
});
// hash navigation
var hash = window.location.hash.substr(1);
if ($("#help" + hash).length) {
$("#help" + hash).modal('show');
}
});