Rename attribute

This commit is contained in:
Oleg Korshul
2024-08-12 16:59:37 +03:00
parent 17d7f61cee
commit 1fff4d45b8

View File

@ -275,7 +275,7 @@
_sendMessageToParent({ _sendMessageToParent({
"guid" : window.Asc.plugin.guid, "guid" : window.Asc.plugin.guid,
"type" : "attachEvent", "type" : "attachEvent",
"name" : id "data" : id
}); });
}; };
window.Asc.plugin.detachEditorEvent = function(id) window.Asc.plugin.detachEditorEvent = function(id)
@ -286,7 +286,7 @@
_sendMessageToParent({ _sendMessageToParent({
"guid" : window.Asc.plugin.guid, "guid" : window.Asc.plugin.guid,
"type" : "detachEvent", "type" : "detachEvent",
"name" : id "data" : id
}); });
}; };