index.js 519 B

123456789101112131415161718192021
  1. /* Make cards clickable. */
  2. $('#cards').on('click', '.panel', function(e)
  3. {
  4. if(!$(e.target).closest('.kanban-actions').length)
  5. {
  6. $.apps.open($(this).data('url'));
  7. }
  8. });
  9. /* Display drop-down menu.*/
  10. $('.panel').mouseenter(function(e)
  11. {
  12. $('.kanban-actions' + e.currentTarget.parentElement.dataset.id).css('visibility','visible');
  13. });
  14. /* Hide drop-down menu. */
  15. $('.panel').mouseleave(function(e)
  16. {
  17. $('.kanban-actions').css('visibility','hidden');
  18. $('.dropdown').removeClass('open');
  19. });