Remove html5hack (legacy google drive setting)

This commit is contained in:
Calvin Montgomery 2017-07-02 22:30:19 -07:00
parent 5500054b84
commit 860775a90b
4 changed files with 2 additions and 7 deletions

View File

@ -2,7 +2,7 @@
"author": "Calvin Montgomery",
"name": "CyTube",
"description": "Online media synchronizer and chat",
"version": "3.39.2",
"version": "3.39.3",
"repository": {
"url": "http://github.com/calzoneman/sync"
},

View File

@ -125,9 +125,6 @@ var defaults = {
enabled: false,
socket: "service.sock"
},
"google-drive": {
"html5-hack-enabled": false
},
"twitch-client-id": null,
poll: {
"max-options": 50

View File

@ -510,7 +510,6 @@ var Getters = {
/* google docs */
gd: function (id, callback) {
GoogleDrive.setHTML5HackEnabled(Config.get("google-drive.html5-hack-enabled"));
var data = {
type: "googledrive",
kind: "single",

View File

@ -38,8 +38,7 @@ Media.prototype = {
bitrate: this.meta.bitrate,
scuri: this.meta.scuri,
embed: this.meta.embed,
gdrive_subtitles: this.meta.gdrive_subtitles,
html5hack: this.meta.html5hack
gdrive_subtitles: this.meta.gdrive_subtitles
}
};
},