first commit

This commit is contained in:
2024-04-19 14:04:41 +07:00
commit 014283036f
7282 changed files with 1324127 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
function check(){
if (jQuery("#notification").is(":hidden")){
jQuery.get("checkNotification.php?checkNum=1", function(data){
if(data!="0"){
jQuery("#notificationIn").load("checkNotification.php");
jQuery("#notification").slideDown("slow");
}
});
}
window.setTimeout(function() {check();}, 10000);
}
jQuery(document).ready(function(){
jQuery("#notification").hide();
jQuery("#notificationClose").click(function () {
jQuery("#notification").hide();
});
window.setTimeout(function() {
check();
}, 1000);
});