Fix #248, fix channel caching temp media

This commit is contained in:
calzoneman 2013-08-07 21:05:30 -04:00
parent ac9d60eee7
commit 9c83a4dd3e
2 changed files with 7 additions and 7 deletions

View file

@ -314,7 +314,7 @@ $("#customembed_btn").click(function () {
$("#getplaylist").click(function() {
var callback = function(data) {
PLAYER.hide();
hidePlayer();
socket.listeners("playlist").splice(
socket.listeners("playlist").indexOf(callback)
);
@ -342,7 +342,7 @@ $("#getplaylist").click(function() {
$("<div/>").addClass("modal-footer").appendTo(modal);
modal.on("hidden", function() {
modal.remove();
PLAYER.unhide();
unhidePlayer();
});
modal.modal();
}