8 lines
164 B
JavaScript
Executable File
8 lines
164 B
JavaScript
Executable File
$('#cards').on('click', '.panel', function(e)
|
|
{
|
|
if(!$(e.target).closest('.kanban-actions').length)
|
|
{
|
|
location.href = $(this).data('url');
|
|
}
|
|
});
|