not sure what this is for

This commit is contained in:
ali asaria 2013-12-08 09:18:41 -05:00
parent 009dbf800c
commit 599d33cc4e

View file

@ -212,7 +212,12 @@ function drawNewCard(id, text, x, y, rot, colour, sticker, animationspeed)
var data = { cardId: cardId, stickerId: stickerId }; var data = { cardId: cardId, stickerId: stickerId };
sendAction('addSticker', data); sendAction('addSticker', data);
}
//remove hover state to everything on the board to prevent
//a jquery bug where it gets left around
$('.card-hover-draggable').removeClass('card-hover-draggable');
},
hoverClass: 'card-hover-draggable'
} }
); );