Skip to content

Commit

Permalink
Add hyperlink to video URL (#5528)
Browse files Browse the repository at this point in the history
As per CSS rules, video's are hidden for mobile resolutions.
This at least lets the user view them by clicking on the title.

Going forward we should make a proper layout for mobile users.
  • Loading branch information
bogas04 authored and cpojer committed Feb 12, 2018
1 parent 2d2fb5b commit 508f789
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion website/pages/en/videos.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ class Videos extends React.Component {
({title, description, type, url}, index) => {
const textMarkup = (
<div className="blockContent">
<h2>{title}</h2>
<h2><a href={url}>{title}</a></h2>
<div>
<MarkdownBlock>{description}</MarkdownBlock>
</div>
Expand Down

0 comments on commit 508f789

Please sign in to comment.