diff options
author | Humberto Alfonso Díaz <humberto.alfonso@asvito.es> | 2019-12-10 08:19:07 +0100 |
---|---|---|
committer | Lorenzo Tilve <ltilve@igalia.com> | 2020-02-04 19:16:01 +0100 |
commit | 997339efe2a907f10ed665eadf400a49794c6872 (patch) | |
tree | dd10354a98a1d8fe200ac8d89f27b8fd5a58356d /src/index.js | |
parent | 4cb50b346d13d25b5aef0fe62c16e6407bb43d54 (diff) |
FUNCT Added playlist
Diffstat (limited to 'src/index.js')
-rw-r--r-- | src/index.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/index.js b/src/index.js index db5cbe3..f1644ae 100644 --- a/src/index.js +++ b/src/index.js @@ -16,6 +16,7 @@ /* JS */ import * as app from './js/app'; import * as player from './js/player'; +import * as playlist from './js/playlist'; import { api } from 'agl-js-api'; @@ -23,6 +24,7 @@ import { api } from 'agl-js-api'; import './styles/app.scss'; window.player = player; +window.playlist = playlist; api.init(); app.init(); |