-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathfooter.php
More file actions
19 lines (18 loc) · 751 Bytes
/
footer.php
File metadata and controls
19 lines (18 loc) · 751 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<div id='Chat-Area'></div>
<!-- INCLUDE SOME JS FILES -->
<?php includeIn('landing.js', array('landing.php')); ?>
<?php includeIn('settings.js', array('settings.php')); ?>
<script>
$(document).ready(function(){
//for navbar active class organizing.
var path = window.location.pathname;
var page = path.split("/").pop();
$("a[href='"+page+"']").parent().addClass('active');
$("a[href='"+page+"']").parents('.litem').siblings().removeClass('active');
});
if(document.cookie === ""){
alertify.alert("It seems that cookies are disabled in your browser. We're sorry but you can't use our website before enabling your cookies.");
}
</script>
</body>
</html>