diff --git a/RELEASE-NOTES.md b/RELEASE-NOTES.md index c2470f371..f9c3a4207 100644 --- a/RELEASE-NOTES.md +++ b/RELEASE-NOTES.md @@ -4,8 +4,10 @@ ### Version 2.0.4 - July X, 2015 **[Reported Bugs](https://github.com/Semantic-Org/Semantic-UI/issues?q=is%3Aissue+milestone%3A2.0.4+is%3Aclosed)** -- +- **Popup** - Fixed issues where rounding could cause elements that are against edge of page from not appearing. Add new `jitter` setting for allowing popups to escape page boundaries by a small margin +**Additional Bugs** +- **Popup** - `wide` and `very wide` popup will now limit themselves to normal popup widths on mobile so that they still appear on screen. ### Version 2.0.3 - July 8, 2015 diff --git a/src/definitions/modules/popup.js b/src/definitions/modules/popup.js index cf4744f34..7ebf22f2f 100644 --- a/src/definitions/modules/popup.js +++ b/src/definitions/modules/popup.js @@ -829,7 +829,7 @@ $.fn.popup = function(parameters) { } else { module.debug('Popup could not find a position to display', $popup); - module.error(error.cannotPlace, element, distanceFromBoundary); + module.error(error.cannotPlace, element); module.remove.attempts(); module.remove.loading(); module.reset();