Skip to content

Commit

Permalink
Fix #30
Browse files Browse the repository at this point in the history
  • Loading branch information
Bwc9876 committed May 20, 2022
1 parent 2084c18 commit ac71ad1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion menagerie/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from menagerie.generate import generate
from menagerie.new_project import new_project

__version__ = '0.1.7'
__version__ = '0.1.8'


def get_parser():
Expand Down
2 changes: 1 addition & 1 deletion menagerie/base_templates/meta_files/base.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
$(document).ready(() => {
$(".menagerie-copy-button").click((e) => {
const text = $(e.target).parent().siblings("code").text();
const text = $(e.currentTarget).siblings("code").text();
navigator.clipboard.writeText(text);
});
});
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = menagerie-docs
author = bwc9876
author_email = bwc9876@gmail.com
version = 0.1.7
version = 0.1.8
url = https://github.com/Bwc9876/menagerie
description = A static site generator made for MarkDown, HTML, JsonSchema, XMLSchema, and more
long_description = file: README.md
Expand Down

0 comments on commit ac71ad1

Please sign in to comment.