Skip to content

Commit

Permalink
Transition “hamburger” navicon on click to “X” navicon by adding `.cl…
Browse files Browse the repository at this point in the history
…ose` to button

- Close 969
  • Loading branch information
mmistakes committed Apr 22, 2017
1 parent 2499944 commit e0099ff
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
### Bug Fixes

- Fix `video` helper to load Vimeo videos over https. [#945](https://github.com/mmistakes/minimal-mistakes/pull/945)
- Fix close menu button that was removed when updating Greedy navigation script. [#969](https://github.com/mmistakes/minimal-mistakes/issues/969)

## [4.4.0](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.4.0)

Expand Down
2 changes: 1 addition & 1 deletion assets/js/main.min.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions assets/js/plugins/jquery.greedy-navigation.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ $(document).ready(function(){

$btn.on('click', function() {
$hlinks.toggleClass('hidden');
$(this).toggleClass('close');
clearTimeout(timer);
});

Expand Down
3 changes: 2 additions & 1 deletion docs/_docs/18-history.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ permalink: /docs/history/
excerpt: "Change log of enhancements and bug fixes made to the theme."
sidebar:
nav: docs
last_modified_at: 2017-04-19T10:43:41-04:00
last_modified_at: 2017-04-21T19:59:55-04:00
---

## Unreleased
Expand All @@ -16,6 +16,7 @@ last_modified_at: 2017-04-19T10:43:41-04:00
### Bug Fixes

- Fix `video` helper to load Vimeo videos over https. [#945](https://github.com/mmistakes/minimal-mistakes/pull/945)
- Fix close menu button that was removed when updating Greedy navigation script. [#969](https://github.com/mmistakes/minimal-mistakes/issues/969)

## [4.4.0](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.4.0)

Expand Down
2 changes: 1 addition & 1 deletion docs/assets/js/main.min.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions docs/assets/js/plugins/jquery.greedy-navigation.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ $(document).ready(function(){

$btn.on('click', function() {
$hlinks.toggleClass('hidden');
$(this).toggleClass('close');
clearTimeout(timer);
});

Expand Down

0 comments on commit e0099ff

Please sign in to comment.