* enable kanban sortable in fullscreen mode.

This commit is contained in:
Hao Sun
2021-12-23 13:51:44 +08:00
parent 167224d677
commit af81e6bb78
-2
View File
@@ -36,7 +36,6 @@ function fullScreen()
{
$('#kanbanContainer').addClass('scrollbar-hover');
$('.actions').hide();
$('.kanban-group-header').hide();
$.cookie('isFullScreen', 1);
};
@@ -74,7 +73,6 @@ function exitFullScreen()
{
$('#mainContent').removeClass('scrollbar-hover');
$('.actions').show();
$('.kanban-group-header').show();
$.cookie('isFullScreen', 0);
}