Fix #152; change JS load order to load faster

This commit is contained in:
calzoneman 2013-05-27 15:00:32 -04:00
parent 296bddefcd
commit 16d3c600fe
3 changed files with 20 additions and 24 deletions

View file

@ -617,12 +617,12 @@ Callbacks = {
},
changeMedia: function(data) {
console.log(data);
$("#currenttitle").text("Currently Playing: " + data.title);
if(data.type != "sc" && MEDIATYPE == "sc")
if(data.type != "sc" && PLAYER.type == "sc")
// [](/goddamnitmango)
fixSoundcloudShit();
if(data.type != MEDIATYPE) {
MEDIATYPE = data.type;
if(data.type != PLAYER.type) {
PLAYER = new Media(data);
}
if(PLAYER.update) {

View file

@ -471,25 +471,21 @@ Media.prototype.removeOld = function() {
}
Media.prototype.hide = function() {
if(this.type == "null") {
if(!/chrome/ig.test(navigator.userAgent)) {
return;
}
this.getTime(function(seconds) {
this.time = seconds;
this.hidden = $("#ytapiplayer").detach();
}.bind(this));
this.size = {
width: $("#ytapiplayer").attr("width"),
height: $("#ytapiplayer").attr("height")
};
$("#ytapiplayer").attr("width", 1)
.attr("height", 1);
}
Media.prototype.unhide = function() {
if(this.type == "null") {
if(!/chrome/ig.test(navigator.userAgent)) {
return;
}
this.hidden.appendTo($("#videodiv"));
var data = {
id: this.id,
currentTime: this.time
};
setTimeout(function() { this.load(data); }.bind(this), 1000);
delete this.hidden;
delete this.time;
$("#ytapiplayer").attr("width", this.size.width)
.attr("height", this.size.height);
}