update profile wip
This commit is contained in:
@@ -27,6 +27,19 @@ function signOut(){
|
||||
});
|
||||
}
|
||||
|
||||
function closeButton(){
|
||||
var btnclose = document.getElementsByClassName("btn-close");
|
||||
for (var i = 0; i<btnclose.length; i++){
|
||||
btnclose[i].addEventListener("click", function(e){
|
||||
var parent = e.currentTarget.parentElement;
|
||||
if(!parent.classList.contains("hidden")){
|
||||
parent.classList.add("hidden");
|
||||
}
|
||||
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
function getQuery(param){
|
||||
var result = "";
|
||||
|
Reference in New Issue
Block a user