Skip to content

Commit

Permalink
🚀 RELEASE: v0.3.0 #171
Browse files Browse the repository at this point in the history
  • Loading branch information
AakashGfude authored Nov 16, 2021
1 parent 9c1414f commit a3d0d64
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion quantecon_book_theme/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

from .launch import add_hub_urls

__version__ = "0.2.9"
__version__ = "0.3.0"
"""quantecon-book-theme version"""

SPHINX_LOGGER = logging.getLogger(__name__)
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions src/js/quantecon-book-theme.js
Original file line number Diff line number Diff line change
Expand Up @@ -77,13 +77,13 @@ document.addEventListener("DOMContentLoaded", function(){
function openSidebar() {
$sidebarToggle.addClass('btn-active');
$sidebar.removeClass('inactive');
$(".toolbar svg.feather.feather-menu").replaceWith(feather.icons.x.toSvg());
$(".qe-toolbar svg.feather.feather-menu").replaceWith(feather.icons.x.toSvg());
localStorage.setSidebar = 1;
}
function closeSidebar() {
$sidebarToggle.removeClass('btn-active');
$sidebar.addClass('inactive');
$(".toolbar svg.feather.feather-x").replaceWith(feather.icons.menu.toSvg());
$(".qe-toolbar svg.feather.feather-x").replaceWith(feather.icons.menu.toSvg());
localStorage.setSidebar = 0;
}

Expand Down

2 comments on commit a3d0d64

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.