Fix for google docs changing their video player:

This commit is contained in:
Calvin Montgomery 2014-08-06 20:12:57 -07:00
parent d94c596063
commit b7edfc31f9
6 changed files with 97 additions and 69 deletions

View file

@ -878,7 +878,10 @@ Callbacks = {
data = vimeoSimulator2014(data);
}
if (data.type === "gp") {
/*
* Google Docs now uses the same simulator as Google+
*/
if (data.type === "gp" || data.type === "gd") {
data = googlePlusSimulator2014(data);
}