Skip to content

Commit

Permalink
Release v2.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
BNDong committed Jun 29, 2021
1 parent 4ed4d85 commit d84b850
Show file tree
Hide file tree
Showing 226 changed files with 13 additions and 7 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
1 change: 1 addition & 0 deletions dist/script/comAfter.8bbda210.js

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion dist/script/comAfter.f96c7d26.js

This file was deleted.

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion dist/simpleMemory.js

Large diffs are not rendered by default.

Large diffs are not rendered by default.

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
12 changes: 9 additions & 3 deletions src/components/rtMenu/rtMenu.js
Original file line number Diff line number Diff line change
Expand Up @@ -237,8 +237,14 @@ export default function main(_) {
* 主页
*/
(() => {
$('#rightMenuHome').click(function () {
window.location.href = _.__status.homeUrl;
});
if (_.__status.pageType !== 'home') {
let rightMenuHome = $('#rightMenuHome');
rightMenuHome.show();

// 点击事件
rightMenuHome.click(function () {
window.location.href = _.__status.homeUrl;
});
}
})();
}
2 changes: 1 addition & 1 deletion src/template/rtMenu.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<i banmv class="iconfont icon-mulu"></i>
</div>
<!-- 主页 -->
<div id="rightMenuHome" class="rightMenuItem" clickflg="true">
<div id="rightMenuHome" class="rightMenuItem" style="display: none;" clickflg="true">
<span class="rightMenuSpan">
访问主页
</span>
Expand Down

0 comments on commit d84b850

Please sign in to comment.