Skip to content

Commit

Permalink
fixup! two-column-mode: Support subtask click in the list
Browse files Browse the repository at this point in the history
  • Loading branch information
doortts committed Jul 6, 2018
1 parent f86673b commit 7678226
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion public/javascripts/service/yobi.issue.List.js
Original file line number Diff line number Diff line change
Expand Up @@ -245,8 +245,11 @@
function _initShowChildList() {
$(".post-item").on("click", function(e){
$(this).find(".child-issue-list").show();
e.stopPropagation();
});

$(".title-wrap > .title").on("click", function(e){
e.stopPropagation();
})
}

function _onLoadIssueList(){
Expand Down

0 comments on commit 7678226

Please sign in to comment.