From 9f686384007889805912ff28ecf83102b321b6f6 Mon Sep 17 00:00:00 2001 From: Jack Lukic Date: Sun, 12 Jun 2016 14:28:04 -0400 Subject: [PATCH] #3960, provide hint on hiding error message in msg --- RELEASE-NOTES.md | 1 + src/definitions/modules/sticky.js | 2 +- src/definitions/modules/transition.js | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/RELEASE-NOTES.md b/RELEASE-NOTES.md index bfc4e340f..c68eb583a 100644 --- a/RELEASE-NOTES.md +++ b/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 diff --git a/src/definitions/modules/sticky.js b/src/definitions/modules/sticky.js index b909172b7..fedcd6c23 100644 --- a/src/definitions/modules/sticky.js +++ b/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.' diff --git a/src/definitions/modules/transition.js b/src/definitions/modules/transition.js index 829e53aa2..a2282038f 100644 --- a/src/definitions/modules/transition.js +++ b/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'