mirror of https://github.com/calzoneman/sync.git
Minor fixes/cleanup
This commit is contained in:
parent
4feee02e33
commit
ba9fbea1a1
|
@ -11,10 +11,6 @@
|
|||
// ==/UserScript==
|
||||
|
||||
(function () {
|
||||
if (!unsafeWindow.enableCyTubeGoogleDriveUserscript) {
|
||||
return;
|
||||
}
|
||||
|
||||
function debug(message) {
|
||||
if (!unsafeWindow.enableCyTubeGoogleDriveUserscriptDebug) {
|
||||
return;
|
||||
|
@ -152,4 +148,5 @@
|
|||
|
||||
unsafeWindow.GoogleDrivePlayer = GoogleDrivePlayer;
|
||||
unsafeWindow.console.log('Initialized userscript Google Drive player');
|
||||
unsafeWindow.hasDriveUserscript = true;
|
||||
})();
|
||||
|
|
|
@ -32,7 +32,7 @@ window.loadMediaPlayer = (data) ->
|
|||
console.error e
|
||||
else if data.type is 'gd'
|
||||
try
|
||||
if data.meta.html5hack
|
||||
if data.meta.html5hack or window.hasDriveUserscript
|
||||
window.PLAYER = new window.GoogleDrivePlayer(data)
|
||||
else
|
||||
window.PLAYER = new GoogleDriveYouTubePlayer(data)
|
||||
|
|
|
@ -217,5 +217,4 @@ function eraseCookie(name) {
|
|||
/* to be implemented in callbacks.js */
|
||||
function setupCallbacks() { }
|
||||
|
||||
window.enableCyTubeGoogleDriveUserscript = true;
|
||||
window.enableCyTubeGoogleDriveUserscriptDebug = true;
|
||||
window.enableCyTubeGoogleDriveUserscriptDebug = getOrDefault("cytube_drive_debug", false);
|
||||
|
|
|
@ -1358,7 +1358,7 @@
|
|||
}
|
||||
} else if (data.type === 'gd') {
|
||||
try {
|
||||
if (data.meta.html5hack) {
|
||||
if (data.meta.html5hack || window.hasDriveUserscript) {
|
||||
return window.PLAYER = new window.GoogleDrivePlayer(data);
|
||||
} else {
|
||||
return window.PLAYER = new GoogleDriveYouTubePlayer(data);
|
||||
|
|
Loading…
Reference in New Issue