aboutsummaryrefslogtreecommitdiffstats
path: root/static/delayJS.php
blob: 96e46c557057ce70fcb5ee04368ad84f02e1e077 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?php
#====================================================================================================
# Disable cache
#====================================================================================================
header('Cache-Control: no-cache, no-store, must-revalidate');

#====================================================================================================
# Set Content-Type
#====================================================================================================
header('Content-Type: text/javascript');

#====================================================================================================
# Simulate long loading time
#====================================================================================================
usleep(intval(rand(10, 40).'0000'));
?>

console.log("EXTERNAL: Delayed javascript resource loaded");