Code Review
/
apps
/
html5-mixer.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
review
|
tree
raw
|
patch
| inline |
side by side
(parent:
cf409e6
)
BUGFIX Add missing API init
author
Humberto Alfonso Díaz
<humberto.alfonso@asvito.es>
Mon, 14 Oct 2019 20:53:20 +0000
(22:53 +0200)
committer
Lorenzo Tilve
<ltilve@igalia.com>
Tue, 4 Feb 2020 08:42:15 +0000
(09:42 +0100)
src/js/app.js
patch
|
blob
|
history
diff --git
a/src/js/app.js
b/src/js/app.js
index
3b8ae97
..
a26f137
100644
(file)
--- a/
src/js/app.js
+++ b/
src/js/app.js
@@
-1,5
+1,5
@@
import Mustache from 'mustache';
-import { audiomixer } from 'agl-js-api';
+import { audiomixer
, api
} from 'agl-js-api';
import { setValue } from './sliders';
var template;
@@
-13,6
+13,7
@@
function render_sliders(sliders) {
}
export function init() {
+ api.init();
template = document.getElementById('slider-template').innerHTML;
Mustache.parse(template);