Test performance

This commit is contained in:
Lagacé Mathieu
2020-01-24 10:33:16 -05:00
parent ef6f403e1b
commit 03cf1c5493
48 changed files with 4699 additions and 1727 deletions

View File

@@ -210,6 +210,19 @@ function loadEventType(date)
var foo = $('#'+i);
foo.trumbowyg('html', val);
}
else if(i == "calendar_color")
{
var foo = $('#'+i);
foo.val(val);
pickr.setColor(val);
}
else if(i == "calendar_icon")
{
var foo = $('#'+i);
foo.val(val);
$('#calendar_icon_display').removeAttr('class');
$('#calendar_icon_display').addClass(val);
}
});
},
error: function () {
@@ -292,4 +305,4 @@ function updatePlantext(toggle,id)
$('#'+id).removeClass('text-success');
$('#'+id).html('Plan de cours non remis')
}
}
}