Merge branch '1.1' of https://github.com/merdiano/orient-site into 1.1
This commit is contained in:
commit
c3574b4cee
|
|
@ -9,6 +9,12 @@ closeMenu.onclick = function () {
|
|||
menu.classList.remove("showMenu");
|
||||
};
|
||||
|
||||
|
||||
|
||||
|
||||
var searchModal = document.getElementById("searchModal");
|
||||
var searchBtn = document.getElementById("searchBtn");
|
||||
var searchClose = document.getElementById("searchClose");
|
||||
searchBtn.onclick = function () {
|
||||
searchModal.classList.add("active");
|
||||
};
|
||||
searchClose.onclick = function () {
|
||||
searchModal.classList.remove("active");
|
||||
};
|
||||
|
|
|
|||
|
|
@ -180,16 +180,6 @@ random = 0
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<script>
|
||||
var searchModal = document.getElementById("searchModal");
|
||||
var searchBtn = document.getElementById("menuBtn");
|
||||
var searchClose = document.getElementById("searchClose");
|
||||
searchBtn.onclick = function () {
|
||||
searchModal.classList.add("active");
|
||||
};
|
||||
searchClose.onclick = function () {
|
||||
searchModal.classList.remove("active");
|
||||
};
|
||||
</script>
|
||||
|
||||
<!-- main end
|
||||
================================================ -->
|
||||
Loading…
Reference in New Issue