Commit c3dafe0e authored by Matheus Miranda's avatar Matheus Miranda
Browse files

Merge branch 'develop' into 'master'

Fix typo at youtube url link

See merge request !106
parents 112e85fb bf35c76b
......@@ -35,7 +35,7 @@
Course.get({id: $scope.course_id}, function(course){
if(course.intro_video) {
youtubePlayerApi.videoId = course.intro_video.youtube_id;
$scope.link_video = `//www.youtube.com/embed/${course.intro_video.youtube_id}?rel=0&showinfo=0&autohide=1&theme=light&wmode=opaque`;
$scope.link_video = "//www.youtube.com/embed/${course.intro_video.youtube_id}?rel=0&showinfo=0&autohide=1&theme=light&wmode=opaque";
}
document.title = 'Curso: {0}'.format(course.name);
$scope.addThumb = !course.thumbnail_url;
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment