mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 01:17:14 +02:00
Fix DS content backups not loading on IE
IE does not support Object.assign
This commit is contained in:
parent
3a98cf284f
commit
debea3791d
1 changed files with 1 additions and 1 deletions
|
@ -2,7 +2,7 @@ if (typeof Settings === "undefined") {
|
||||||
Settings = {};
|
Settings = {};
|
||||||
}
|
}
|
||||||
|
|
||||||
Object.assign(Settings, {
|
$.extend(Settings, {
|
||||||
DEPRECATED_CLASS: 'deprecated-setting',
|
DEPRECATED_CLASS: 'deprecated-setting',
|
||||||
TRIGGER_CHANGE_CLASS: 'trigger-change',
|
TRIGGER_CHANGE_CLASS: 'trigger-change',
|
||||||
DATA_ROW_CLASS: 'value-row',
|
DATA_ROW_CLASS: 'value-row',
|
||||||
|
|
Loading…
Reference in a new issue