Skip to content

Commit 324e44c

Browse files
committedMay 8, 2017
Toggle close button on mouseleave
- Close mmistakes#975
1 parent 1eff0ce commit 324e44c

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed
 

‎CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
## Unreleased
22

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+
39
### Enhancements
410

511
- Add Greek localized UI text strings. [#958](https://github.com/mmistakes/minimal-mistakes/pull/958)

‎_layouts/default.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
<!doctype html>
55
<!--
6-
Minimal Mistakes Jekyll Theme 4.4.0 by Michael Rose
6+
Minimal Mistakes Jekyll Theme 4.4.1 by Michael Rose
77
Copyright 2017 Michael Rose - mademistakes.com | @mmistakes
88
Free for personal and commercial use under the MIT license
99
https://github.com/mmistakes/minimal-mistakes/blob/master/LICENSE.txt

‎assets/js/plugins/jquery.greedy-navigation.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,9 @@ $(document).ready(function(){
4646
$btn.attr("count", numOfItems - numOfVisibleItems);
4747
if (numOfVisibleItems === numOfItems) {
4848
$btn.addClass('hidden');
49-
} else $btn.removeClass('hidden');
49+
} else {
50+
$btn.removeClass('hidden');
51+
}
5052
}
5153

5254
// Window listeners

0 commit comments

Comments
 (0)
Please sign in to comment.