Skip to content

Commit

Permalink
Fixed not working in Safari...
Browse files Browse the repository at this point in the history
  • Loading branch information
YePpHa committed Aug 18, 2013
1 parent 878057c commit 50ede82
Show file tree
Hide file tree
Showing 12 changed files with 30 additions and 23 deletions.
4 changes: 2 additions & 2 deletions build.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
@ant-version@=1.33.2
@ant-revision@=130
@ant-version@=1.33.3
@ant-revision@=135
@pastebin-api-key@=ea3b15f885762eed91d9447d0ca5b7c1
2 changes: 1 addition & 1 deletion build/.styles/ytcenter-styles-general.css

Large diffs are not rendered by default.

Binary file modified dist/YouTubeCenter.crx
Binary file not shown.
Binary file modified dist/YouTubeCenter.mxaddon
Binary file not shown.
Binary file modified dist/YouTubeCenter.oex
Binary file not shown.
2 changes: 1 addition & 1 deletion dist/YouTubeCenter.safariextension/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleShortVersionString</key>
<string>1.33.2</string>
<string>1.33.3</string>
<key>CFBundleVersion</key>
<string>116</string>
<key>Chrome</key>
Expand Down
18 changes: 10 additions & 8 deletions dist/YouTubeCenter.safariextension/YouTubeCenter.user.js

Large diffs are not rendered by default.

Binary file modified dist/YouTubeCenter.safariextz
Binary file not shown.
18 changes: 10 additions & 8 deletions dist/YouTubeCenter.user.js

Large diffs are not rendered by default.

Binary file modified dist/YouTubeCenter.xpi
Binary file not shown.
1 change: 1 addition & 0 deletions src/.styles/ytcenter-styles-general.css
Original file line number Diff line number Diff line change
Expand Up @@ -763,6 +763,7 @@ ul.ytcenter-menu-3d-hide li.ytcenter-menu-item-3d {

.ytcenter-remove-ads-page .ad-div,
.ytcenter-remove-ads-page .mastad,
.ytcenter-remove-ads-page .lohp-pyv-shelf-container,
.ytcenter-remove-ads-page .masthead-ad-control,
.ytcenter-remove-ads-page .masthead-ad-control-lihp,
.ytcenter-remove-ads-page .watch-pyv-vid,
Expand Down
8 changes: 5 additions & 3 deletions src/YouTubeCenter.user.js
Original file line number Diff line number Diff line change
Expand Up @@ -14060,9 +14060,9 @@
}, function(){
return ytcenter.player.config;
});
} else if (ytcenter.utils.setterGetterObjectCompatible()) {
}/* else if (ytcenter.utils.setterGetterObjectCompatible()) {
con.log("[PlayerConfig Hijacker] Using Object Setter Getter Method");
uw.ytplayer= {
uw.ytplayer = {
get config() {
return ytcenter.player.config;
},
Expand All @@ -14075,14 +14075,16 @@
}
}
};
} else {
}*/ else {
con.log("[PlayerConfig Hijacker] Setter Getter Method not suppoted!");
ytcenter.player.config = uw.ytplayer.config;
ytcenter.player.disablePlayerUpdate = false;
}
}
} catch (e) {
con.error(e);
ytcenter.player.config = uw.ytplayer.config;
ytcenter.player.disablePlayerUpdate = false;
}
ytcenter.pageReadinessListener.waitfor = function(){
return __settingsLoaded;
Expand Down

0 comments on commit 50ede82

Please sign in to comment.