* Fix the problem that the kanban cannot be displayed in the IE browser.

This commit is contained in:
tianshujie
2022-03-24 08:39:15 +08:00
parent 5f1f55d874
commit bd9b982157
+2 -1
View File
@@ -822,8 +822,9 @@ function finishCard(cardID, kanbanID, regionID)
* @access public
* @return boolean
*/
function updateRegion(regionID, regionData = [])
function updateRegion(regionID, regionData)
{
if(typeof(regionData) == 'undefined') regionData = [];
if(!regionID) return false;
var $region = $('#kanban'+ regionID).kanban();