diff --git a/RELEASE-NOTES.md b/RELEASE-NOTES.md index 0bf30139a..d192b88b5 100644 --- a/RELEASE-NOTES.md +++ b/RELEASE-NOTES.md @@ -27,6 +27,7 @@ - **Icon** - Fixes `talk` icon not working correctly **Thanks @anantogosh** #4354 - **Transition** - Removed unreachable code **Thanks @basarat** #4225 - **Grid** - Fixed alignment in `centered justified grid** **Thanks @bretto36** #4224 +- **Popup** - Fixed issue where `observeChanges: false` setting in popup would not prevent mutation observers **Docs** - **Icons** - Fixed some duplicate icons (External) and mispelled icons (Dribbble) diff --git a/src/definitions/modules/popup.js b/src/definitions/modules/popup.js index 4294641ac..0e4a6142c 100644 --- a/src/definitions/modules/popup.js +++ b/src/definitions/modules/popup.js @@ -88,7 +88,9 @@ $.fn.popup = function(parameters) { if(!module.exists() && settings.preserve) { module.create(); } - module.observeChanges(); + if(settings.observeChanges) { + module.observeChanges(); + } module.instantiate(); },