diff --git a/src/components/views/elements/AppTile.js b/src/components/views/elements/AppTile.js
index 72d59d0ecd..18b2148829 100644
--- a/src/components/views/elements/AppTile.js
+++ b/src/components/views/elements/AppTile.js
@@ -64,7 +64,8 @@ export default React.createClass({
-
+ {/* */}
+
);
diff --git a/src/components/views/rooms/AppsDrawer.js b/src/components/views/rooms/AppsDrawer.js
index 1318d07d8b..041e0f0943 100644
--- a/src/components/views/rooms/AppsDrawer.js
+++ b/src/components/views/rooms/AppsDrawer.js
@@ -28,22 +28,34 @@ module.exports = React.createClass({
},
componentDidMount: function() {
- const as = this.state.apps;
- as.push({
- id: "bbcApp",
- url: "http://news.bbc.co.uk",
- name: "BBC News",
- });
- this.setState({apps: as});
+ // const as = this.state.apps;
+ // as.push({
+ // id: "bbcApp",
+ // url: "http://news.bbc.co.uk",
+ // name: "BBC News",
+ // });
+ // this.setState({apps: as});
},
getInitialState: function() {
return {
- apps: [{
- id: "riot-bot",
- url: "https://matrix.org/_matrix/media/v1/thumbnail/matrix.org/LvHiqFMHWxAjFUMVCvaPbRYs?width=150&height=150",
- name: "Riot-bot",
- }],
+ apps: [
+ // {
+ // id: "riot-bot",
+ // url: "https://matrix.org/_matrix/media/v1/thumbnail/matrix.org/LvHiqFMHWxAjFUMVCvaPbRYs?width=150&height=150",
+ // name: "Riot-bot",
+ // },
+ {
+ id: "youtube",
+ url: "https://www.youtube.com/embed/ZJy1ajvMU1k?controls=0&enablejsapi=1&iv_load_policy=3&modestbranding=1&playsinline=1",
+ name: "Live stream - Boeuf Bourguignon",
+ },
+ {
+ id: "recipie",
+ url: "https://www.bbcgoodfood.com/recipes/5032/beef-bourguignon",
+ name: "Ingredients - Boeuf Bourguignon",
+ },
+ ],
};
},