N°2115 Fix regression introduced in N°1443: Left pane menu not showing due a JS error

This commit is contained in:
Molkobain
2019-03-25 15:39:45 +01:00
parent 764b0f8e31
commit 16c8466841

View File

@@ -113,8 +113,13 @@ function sprintf(format, etc) {
$(':input[name^=storedSelection]', pager).remove();
}
function storeSelection(table, pager, id, value, disabled=false)
function storeSelection(table, pager, id, value, disabled)
{
if(disabled == undefined)
{
disabled = false;
}
var valueToStore = value;
if (table.config.selectionMode == 'negative')
{