Add support for Google Docs videos

This commit is contained in:
calzoneman 2013-11-07 17:19:36 -06:00
parent 2730c54344
commit 4198f3ce2c
6 changed files with 158 additions and 3 deletions

View file

@ -1402,6 +1402,13 @@ function parseMediaLink(url) {
};
}
if ((m = url.match(/docs\.google\.com\/file\/d\/(.*?)\/edit/))) {
return {
id: m[1],
type: "gd"
};
}
return {
id: null,
type: null