summaryrefslogtreecommitdiff
path: root/resources
diff options
context:
space:
mode:
authorSam Light <samlight1994@gmail.com>2022-09-05 09:45:04 +0100
committerSam Light <samlight1994@gmail.com>2022-09-05 09:45:04 +0100
commit08908a314cb75dbcf51e6221c2f2c49d3a55d17f (patch)
tree994b65cc5a3eb70c720cece5e3c4536aff72c7c1 /resources
parentcb292e5674afde1ac99de9c9d3d2dbac5f8c0aee (diff)
Implemented majority of the player functionality
Diffstat (limited to 'resources')
-rw-r--r--resources/views/player.blade.php13
1 files changed, 13 insertions, 0 deletions
diff --git a/resources/views/player.blade.php b/resources/views/player.blade.php
new file mode 100644
index 0000000..a2baee5
--- /dev/null
+++ b/resources/views/player.blade.php
@@ -0,0 +1,13 @@
+<html>
+ <head>
+ <link rel="stylesheet" type="text/css" href="{{ manifest('css/scorm_player.css') }}" />
+ </head>
+
+ <body>
+ <iframe class="scorm-player"></iframe>
+ <script>
+ window.scorm_api_data = {{ Js::from($scorm_api_data) }};
+ </script>
+ <script src="{{ manifest('js/scorm_player.js') }}"></script>
+ </body>
+</html>