mirror of https://github.com/calzoneman/sync.git
Remove html5hack (legacy google drive setting)
This commit is contained in:
parent
5500054b84
commit
860775a90b
|
@ -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"
|
||||
},
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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
|
||||
}
|
||||
};
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue