Browse Source

One last fix 1.12.0

pull/2136/merge 1.12.0
jlukic 9 years ago
parent
commit
ca030ebb33
6 changed files with 8 additions and 5 deletions
  1. 3
      RELEASE-NOTES.md
  2. 2
      dist/components/popup.js
  3. 2
      dist/components/popup.min.js
  4. 2
      dist/semantic.js
  5. 2
      dist/semantic.min.js
  6. 2
      src/definitions/modules/popup.js

3
RELEASE-NOTES.md

@ -6,6 +6,9 @@
- **Visibility** - Adds updated visibility module from `2.x` channel. Visibility will automatically refresh by default after images load on page refresh. Fixes issues with element positions after image loading.
- **Sticky** - Adds sticky module from `2.x` branch. Sticky elements now use pub/sub with drastically improved performance. Sticky elements that do not fit on page will now scroll at the same speed as the page is scrolled instead of slower.
**Changes**
- **Popup** - Popup no longer produces a console error when it cannot find an adequate position in the browser viewport.
**Bugs**
- **Build Tools** - Fixes issue with component glob matching twice (causing build to include file twice) if duplicate values found in `semantic.json` component.
- **Input** - Backports fix from `2.x` for `ui fluid input` not appearing correctly.

2
dist/components/popup.js

@ -760,7 +760,7 @@ $.fn.popup = function(parameters) {
}
else if(!settings.lastResort) {
module.debug('Popup could not find a position in view', $popup);
module.error(error.cannotPlace, element);
// module.error(error.cannotPlace, element);
module.remove.attempts();
module.remove.loading();
module.reset();

2
dist/components/popup.min.js
File diff suppressed because it is too large
View File

2
dist/semantic.js

@ -7277,7 +7277,7 @@ $.fn.popup = function(parameters) {
}
else if(!settings.lastResort) {
module.debug('Popup could not find a position in view', $popup);
module.error(error.cannotPlace, element);
// module.error(error.cannotPlace, element);
module.remove.attempts();
module.remove.loading();
module.reset();

2
dist/semantic.min.js
File diff suppressed because it is too large
View File

2
src/definitions/modules/popup.js

@ -760,7 +760,7 @@ $.fn.popup = function(parameters) {
}
else if(!settings.lastResort) {
module.debug('Popup could not find a position in view', $popup);
module.error(error.cannotPlace, element);
// module.error(error.cannotPlace, element);
module.remove.attempts();
module.remove.loading();
module.reset();

Loading…
Cancel
Save