Add underscore to youtube regex

This commit is contained in:
Evan Tschuy 2016-08-11 01:21:35 -07:00 committed by GitHub
parent 1d1a1e2818
commit d1921c49e2

View file

@ -206,7 +206,7 @@ plugins.factory('userPlugins', function() {
* See: https://developers.google.com/youtube/player_parameters
*/
var youtubePlugin = new UrlPlugin('YouTube video', function(url) {
var regex = /(?:youtube.com|youtu.be)\/(?:v\/|embed\/|watch(?:\?v=|\/))?([a-zA-Z0-9-]+)/i,
var regex = /(?:youtube.com|youtu.be)\/(?:v\/|embed\/|watch(?:\?v=|\/))?([a-zA-Z0-9_-]+)/i,
match = url.match(regex);
if (match){