summaryrefslogtreecommitdiffstats
path: root/web
diff options
context:
space:
mode:
authorJoram Wilander <jwawilander@gmail.com>2015-10-17 12:15:17 -0400
committerJoram Wilander <jwawilander@gmail.com>2015-10-17 12:15:17 -0400
commit635b9e30c2170fd85c09159572b2934b0a35c331 (patch)
treea14c12f53d58a57e08ebcf679184cd28f933f3e6 /web
parent8ea76b0ada2cbe1914307f3edf0658e7f342a91e (diff)
parentaa40f88bbbca68089e8fad144f590f27e3afa3da (diff)
downloadchat-635b9e30c2170fd85c09159572b2934b0a35c331.tar.gz
chat-635b9e30c2170fd85c09159572b2934b0a35c331.tar.bz2
chat-635b9e30c2170fd85c09159572b2934b0a35c331.zip
Merge pull request #1099 from florianorben/PLT-463
PLT-463: Remove AUTHOR from YouTube preview not helpful and takes up too much room
Diffstat (limited to 'web')
-rw-r--r--web/react/components/post_body.jsx8
-rw-r--r--web/sass-files/sass/partials/_videos.scss7
2 files changed, 2 insertions, 13 deletions
diff --git a/web/react/components/post_body.jsx b/web/react/components/post_body.jsx
index 1db0b12e7..fb838b736 100644
--- a/web/react/components/post_body.jsx
+++ b/web/react/components/post_body.jsx
@@ -116,7 +116,7 @@ export default class PostBody extends React.Component {
}
var metadata = data.items[0].snippet;
this.receivedYoutubeData = true;
- this.setState({youtubeUploader: metadata.channelTitle, youtubeTitle: metadata.title});
+ this.setState({youtubeTitle: metadata.title});
}
if (global.window.config.GoogleDeveloperKey && !this.receivedYoutubeData) {
@@ -134,18 +134,12 @@ export default class PostBody extends React.Component {
header = header + ' - ';
}
- let uploader = this.state.youtubeUploader;
- if (!uploader) {
- uploader = 'unknown';
- }
-
return (
<div className='post-comment'>
<h4>
<span className='video-type'>{header}</span>
<span className='video-title'><a href={link}>{this.state.youtubeTitle}</a></span>
</h4>
- <h4 className='video-uploader'>{uploader}</h4>
<div
className='video-div embed-responsive-item'
id={youtubeId}
diff --git a/web/sass-files/sass/partials/_videos.scss b/web/sass-files/sass/partials/_videos.scss
index 9e1ce29b7..6ae5b488b 100644
--- a/web/sass-files/sass/partials/_videos.scss
+++ b/web/sass-files/sass/partials/_videos.scss
@@ -26,11 +26,6 @@
padding:0px;
}
-.video-uploader {
- font-size: 13px;
- margin: 0 0 15px;
-}
-
.video-title {
font-size:15px;
margin-top:3px;
@@ -54,4 +49,4 @@
border-top:36px solid transparent;
border-bottom:36px solid transparent;
border-left:60px solid rgba(255,255,255,0.4);
-} \ No newline at end of file
+}