Fixed Firefox audio issue with the Loader and added defined functions for anonymous callbacks

This commit is contained in:
Richard Davey
2013-08-05 03:43:20 +01:00
parent 84ef32e62a
commit d1da4cbdef
15 changed files with 314 additions and 200 deletions
+13
View File
@@ -136,6 +136,19 @@ if ($state == false && $mobile == false)
<div id="links">
<?php
$files = dirToArray(dirname(__FILE__));
$total = 0;
foreach ($files as $key => $value) {
// If $key is an array, output it as an h2 or something
if (is_array($value) && count($value) > 0)
{
$total += count($value);
}
}
echo "<h2>Total Tests: $total </h2>";
foreach ($files as $key => $value) {