Browse Source

#3960, provide hint on hiding error message in msg

pull/4164/head
Jack Lukic 8 years ago
parent
commit
9f68638400
3 changed files with 3 additions and 2 deletions
  1. 1
      RELEASE-NOTES.md
  2. 2
      src/definitions/modules/sticky.js
  3. 2
      src/definitions/modules/transition.js

1
RELEASE-NOTES.md

@ -3,6 +3,7 @@
### Version 2.2.0 - XX XX, 2016
**New Features**
- **jQuery** - Semantic UI is now fully compatible with jQuery `3.0`
- **Webpack** - All relative css paths are now webpack-compatible
- **NPM** - NPM dependencies have all been updated to latest stable releases
- **All UI** - Components that use event handlers on `document`, `body`, or a `settings.context` now all use DOM mutation observers to detect removal and prevent memory leaks

2
src/definitions/modules/sticky.js

@ -918,7 +918,7 @@ $.fn.sticky.settings = {
error : {
container : 'Sticky element must be inside a relative container',
visible : 'Element is hidden, you must call refresh after element becomes visible',
visible : 'Element is hidden, you must call refresh after element becomes visible. Use silent setting to surpress this warning in production.',
method : 'The method you called is not defined.',
invalidContext : 'Context specified does not exist',
elementSize : 'Sticky element is larger than its container, cannot create sticky.'

2
src/definitions/modules/transition.js

@ -1079,7 +1079,7 @@ $.fn.transition.settings = {
// possible errors
error: {
noAnimation : 'Element is no longer attached to DOM. Unable to animate.',
noAnimation : 'Element is no longer attached to DOM. Unable to animate. Use silent setting to surpress this warning in production.',
repeated : 'That animation is already occurring, cancelling repeated animation',
method : 'The method you called is not defined',
support : 'This browser does not support CSS animations'

Loading…
Cancel
Save