Skip to content

Commit

Permalink
修复日志块高度计算不准的问题
Browse files Browse the repository at this point in the history
  • Loading branch information
qinhua committed Nov 28, 2021
1 parent 937c1f9 commit f3e1907
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion source/js/joe.journals.js
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ const journalContext = {
$allBlocks.each(function () {
const $this = $(this);
if (
$this[0].getBoundingClientRect().height >
$this[0].getBoundingClientRect().height >=
ThemeConfig.journal_block_height
) {
$this.siblings(".journal_content_expander").show();
Expand Down
2 changes: 1 addition & 1 deletion source/js/min/joe.journals.min.js

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

0 comments on commit f3e1907

Please sign in to comment.