client/player/js/cinelabModelV1.php
author samuel huron <admin@cybunk.com>
Mon, 14 Jun 2010 15:23:07 +0200
changeset 40 06e691528710
parent 1 436d4791d7ac
permissions -rw-r--r--
update CSS for embed player update link to json with absolute URL (temporaly ) <- modify this

<?PHP

header("Content-Type: application/json;");

$filename ="cinelabModelV1.js";
$handle = fopen($filename, "r");
$contents = fread($handle, filesize($filename));
echo($contents);
fclose($handle);


?>