mirror of
https://github.com/ONLYOFFICE/sdkjs.git
synced 2026-02-10 18:15:19 +08:00
Merge pull request 'fix/custom-text-highlight' (#1677) from fix/custom-text-highlight into release/v9.2.0
This commit is contained in:
@ -652,8 +652,8 @@
|
||||
|
||||
return this.onPluginEvent2(name, data, undefined, isExclusive);
|
||||
},
|
||||
|
||||
onPluginEvent2 : function(name, data, guids, isExclusive, isOnlyCheck)
|
||||
|
||||
onPluginEvent2 : function(name, data, guids, isExclusive, isOnlyCheck, excludedGuids)
|
||||
{
|
||||
let needsGuids = [];
|
||||
for (let guid in this.runnedPluginsMap)
|
||||
@ -661,6 +661,9 @@
|
||||
if (guids && !guids[guid])
|
||||
continue;
|
||||
|
||||
if (excludedGuids && excludedGuids[guid])
|
||||
continue;
|
||||
|
||||
if (guid === this.currentPluginEvent)
|
||||
continue;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user