Skip to content

Commit

Permalink
kidoju.widgets.mediarecorder: implement an (audio/video) recorder widget
Browse files Browse the repository at this point in the history
  • Loading branch information
jlchereau committed May 4, 2018
1 parent 8c66508 commit 2ee8e81
Showing 1 changed file with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,18 @@
<head>
<meta charset="UTF-8">
<title>MediaRecorder</title>
<link href="./styles/vendor/kendo/web/kendo.common.min.css" rel="stylesheet">
<link href="./styles/vendor/kendo/web/kendo.default.min.css" rel="stylesheet">
<link href="./styles/vendor/kendo/web/kendo.default.mobile.min.css" rel="stylesheet">
<link rel="stylesheet" href="../../styles/vendor/kendo/web/kendo.common.min.css">
<link rel="stylesheet" href="../../styles/vendor/kendo/web/kendo.rtl.min.css">
<link rel="stylesheet" href="../../styles/vendor/kendo/web/kendo.default.min.css">
<!-- kidoju.widgets.mediarecorder stylesheet -->
<!--link href="./styles/widgets/kidoju.widgets.mediarecorder.css" rel="stylesheet" /-->
<!-- SystemJS loader -->
<script src="../test/vendor/system.js"></script>
<script src="../../../test/vendor/system.js"></script>
<script>
(function () {
'use strict';
SystemJS.config({
baseURL: './',
baseURL: '../../',
bundles: {
'kendogrid': ['kendo.grid'],
'kendoaspnetmvc': ['kendo.aspnetmvc'],
Expand Down Expand Up @@ -176,12 +176,12 @@
}
},
paths: {
'plugin-babel': '../node_modules/systemjs-plugin-babel/plugin-babel.js',
'systemjs-babel-build': '../node_modules/systemjs-plugin-babel/systemjs-babel-browser.js'
'plugin-babel': '../../../node_modules/systemjs-plugin-babel/plugin-babel.js',
'systemjs-babel-build': '../../../node_modules/systemjs-plugin-babel/systemjs-babel-browser.js'
},
transpiler: 'plugin-babel'
});
SystemJS.import('./js/widgets/kidoju.widgets.mediarecorder.es6').then(function () {
SystemJS.import('./kidoju.widgets.mediarecorder.es6').then(function () {
$(function () {
var kendo = window.kendo;
// Unbound
Expand Down

0 comments on commit 2ee8e81

Please sign in to comment.