mirror of
https://github.com/ONLYOFFICE/web-apps.git
synced 2026-07-25 10:27:48 +08:00
Merge pull request #2772 from ONLYOFFICE/fix/problem-ie
[plugins] Fix problem with plugins icons in IE.
This commit is contained in:
@ -301,7 +301,9 @@ define([
|
||||
let paramName = bHasName ? 'theme' : 'style';
|
||||
if (arrThemes.length) {
|
||||
for (let thInd = 0; thInd < arrThemes.length; thInd++) {
|
||||
result.push({[paramName]: arrThemes[thInd]});
|
||||
let obj = {};
|
||||
obj[paramName] = arrThemes[thInd];
|
||||
result.push(obj);
|
||||
}
|
||||
} else {
|
||||
result.push({});
|
||||
|
||||
Reference in New Issue
Block a user