Updated to new notification name DOM_OBJECTS_UPDATED -> MODULE_DOM_UPDATED (#3548)

This is an update to #3535. See #3534 for discussion and context. Fixes
#3534 (again).
This commit is contained in:
Ryan Williams
2024-09-19 01:29:43 -04:00
committed by GitHub
parent 8f5aa50d79
commit 1823f5a130
2 changed files with 2 additions and 2 deletions

View File

@@ -668,7 +668,7 @@ const MM = (function () {
// Further implementation is done in the private method.
updateDom(module, updateOptions).then(function () {
// Once the update is complete and rendered, send a notification to the module that the DOM has been updated
sendNotification("DOM_OBJECTS_UPDATED", null, null, module);
sendNotification("MODULE_DOM_UPDATED", null, null, module);
});
},