Resolve merge conflict

This commit is contained in:
calzoneman 2013-08-08 18:28:10 -04:00
commit 4f6d72d6d5
6 changed files with 36 additions and 19 deletions

View file

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