diff --git a/RELEASE-NOTES.md b/RELEASE-NOTES.md index bf398cf8a..97f211b33 100644 --- a/RELEASE-NOTES.md +++ b/RELEASE-NOTES.md @@ -61,6 +61,7 @@ - **List** - List spacing defaults have been adjusted to be more consistent - **Popup** - Popup can now allow itself not to be closed when hovered over - **Popup** - A popup element can now be specified on initialization. +- **Reveal** - Reveals now all use css properties with GPU acceleration - **Popup** - Positioned popups will now extend in the opposite direction to fit better with floated content - **Rating** - Rating now uses an embedded icon font to maximize compatibility - **Rating** - Rating can now automatically generate icons without including them diff --git a/src/definitions/modules/popup.js b/src/definitions/modules/popup.js index a19d1aba1..da06d5301 100644 --- a/src/definitions/modules/popup.js +++ b/src/definitions/modules/popup.js @@ -895,8 +895,8 @@ $.fn.popup.settings = { name : 'Popup', debug : false, - verbose : false, - performance : false, + verbose : true, + performance : true, namespace : 'popup', onCreate : function(){}, diff --git a/src/definitions/modules/sidebar.js b/src/definitions/modules/sidebar.js index 7be70e920..17d5da7eb 100644 --- a/src/definitions/modules/sidebar.js +++ b/src/definitions/modules/sidebar.js @@ -371,14 +371,12 @@ $.fn.sidebar = function(parameters) { module.repaint(); animate = function() { module.set.animating(); - requestAnimationFrame(function() { - module.set.visible(); - if(!module.othersActive()) { - if(settings.dimPage) { - $pusher.addClass(className.dimmed); - } + module.set.visible(); + if(!module.othersActive()) { + if(settings.dimPage) { + $pusher.addClass(className.dimmed); } - }); + } }; transitionEnd = function(event) { if( event.target == $transition[0] ) { diff --git a/src/definitions/modules/sidebar.less b/src/definitions/modules/sidebar.less index cbd4f7703..cae80bfed 100755 --- a/src/definitions/modules/sidebar.less +++ b/src/definitions/modules/sidebar.less @@ -44,13 +44,13 @@ z-index: @topLayer; } - -/* 3D Rendering Fix */ +/* 3D Rendering */ .ui.sidebar * { backface-visibility: hidden; transform: rotateZ(0deg); } + /*-------------- Direction ---------------*/