summaryrefslogtreecommitdiff
path: root/resources/views/player.blade.php
blob: 31836eb893fabfdd3ed8159a0816bf5ea0351af4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<html>
  <head>
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>{{ $sco->title }}</title>
    <style>
     * {
       margin: 0;
       padding: 0;
     }

     html,
     body {
       height: 100%;
     }

     iframe.scorm-player {
       position: absolute;
       width: 100%;
       height: 100%;
       border: none;
     }
    </style>
  </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>