File tree 3 files changed +10
-2
lines changed
3 files changed +10
-2
lines changed Original file line number Diff line number Diff line change 1
1
## Unreleased
2
2
3
+ ### Bug Fixes
4
+
5
+ - Toggle close button on ` mouseleave ` . [ #975 ] ( https://github.com/mmistakes/minimal-mistakes/issues/975 )
6
+
7
+ ## [ 4.4.1] ( https://github.com/mmistakes/minimal-mistakes/releases/tag/4.4.1 )
8
+
3
9
### Enhancements
4
10
5
11
- Add Greek localized UI text strings. [ #958 ] ( https://github.com/mmistakes/minimal-mistakes/pull/958 )
Original file line number Diff line number Diff line change 3
3
4
4
<!doctype html>
5
5
<!--
6
- Minimal Mistakes Jekyll Theme 4.4.0 by Michael Rose
6
+ Minimal Mistakes Jekyll Theme 4.4.1 by Michael Rose
7
7
Copyright 2017 Michael Rose - mademistakes.com | @mmistakes
8
8
Free for personal and commercial use under the MIT license
9
9
https://github.com/mmistakes/minimal-mistakes/blob/master/LICENSE.txt
Original file line number Diff line number Diff line change @@ -46,7 +46,9 @@ $(document).ready(function(){
46
46
$btn . attr ( "count" , numOfItems - numOfVisibleItems ) ;
47
47
if ( numOfVisibleItems === numOfItems ) {
48
48
$btn . addClass ( 'hidden' ) ;
49
- } else $btn . removeClass ( 'hidden' ) ;
49
+ } else {
50
+ $btn . removeClass ( 'hidden' ) ;
51
+ }
50
52
}
51
53
52
54
// Window listeners
You can’t perform that action at this time.
0 commit comments