Browse Source

Remove verbose error message from popup, update rlsnotes

pull/2616/merge
jlukic 9 years ago
parent
commit
a089192f47
2 changed files with 4 additions and 2 deletions
  1. 4
      RELEASE-NOTES.md
  2. 2
      src/definitions/modules/popup.js

4
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

2
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();

Loading…
Cancel
Save