-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Open
Description
Any ideas why setting value to editor in IE 11
editor.setValue(configurationJSON);
takes a lot of time (16 sec in my case) against miliseconds in Chrome and FF?
//Init JSON Editor
var editor = new JSONEditor(document.getElementById('editor_holder'), {
ajax: false,
disable_properties: true,
disable_array_reorder: true,
disable_edit_json: true,
schema: schema
});
editor.on('ready', function () {
reload();
});
var reload = function () {
var configurationJSON = JSON.parse('json val');
editor.setValue(configurationJSON);
}
corykon
Metadata
Metadata
Assignees
Labels
No labels