Skip to content
Snippets Groups Projects
Commit 5891de1b authored by Manuel Herrmann's avatar Manuel Herrmann
Browse files

script filtering for epilepsy improvement

parent 20355b61
No related branches found
No related tags found
No related merge requests found
...@@ -44,8 +44,14 @@ function index_get_js_includes() { ...@@ -44,8 +44,14 @@ function index_get_js_includes() {
$scripts = array_merge($base_js, $additional_js); $scripts = array_merge($base_js, $additional_js);
$ret = ''; $ret = '';
$currPathLength = strlen(realpath("."))+1;
$uniq = array();
foreach ($scripts as $script) { foreach ($scripts as $script) {
$ret .= "<script type=\"text/javascript\" src=\"" . $basefolder . $script . "\"></script>\n"; $script = substr(realpath($basefolder.$script), $currPathLength);
if (isset($uniq[$script])) continue;
$uniq[$script] = true;
$ret .= "<script type=\"text/javascript\" src=\"" . $script . "\"></script>\n";
} }
return $ret; return $ret;
} }
...@@ -410,16 +416,16 @@ function index_show_countdown($opentime) { ...@@ -410,16 +416,16 @@ function index_show_countdown($opentime) {
function hurrdurr () { function hurrdurr () {
$('#text, body').stop().animate({color:b?'#ffffff':'#000000'}, 1000); $('#text, body').stop().animate({color:b?'#ffffff':'#000000'}, 1000);
hurrrdurrr('#menubox'); hurrrdurrr($('#menubox'));
hurrrdurrr('body'); hurrrdurrr($('body'));
hurrrdurr(); hurrrdurr();
function hurrrdurrr(elem) { function hurrrdurrr(elem) {
$(elem).stop().animate({backgroundColor:'#'+randstr()}, 333, elem.stop().animate({backgroundColor:'#'+randstr()}, 333,
function () { function () {
$(elem).stop().animate({backgroundColor:'#'+randstr()}, 333, elem.stop().animate({backgroundColor:'#'+randstr()}, 333,
function () { function () {
$(elem).stop().animate({backgroundColor:'#'+randstr()}, 333); elem.stop().animate({backgroundColor:'#'+randstr()}, 333);
}); });
}); });
} }
...@@ -464,4 +470,4 @@ function index_show_countdown($opentime) { ...@@ -464,4 +470,4 @@ function index_show_countdown($opentime) {
echo '<div id="QRcode" style="position: fixed; bottom: 10px; right: 10px;"></div>'; echo '<div id="QRcode" style="position: fixed; bottom: 10px; right: 10px;"></div>';
} }
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment