Total Complexity | 3 |
Complexity/F | 1 |
Lines of Code | 13 |
Function Count | 3 |
Duplicated Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | $(".comment-container").click(function () { |
||
2 | $(this).addClass("toggled"); |
||
3 | |||
4 | $(document).click(function () { |
||
5 | $(".comment-container").removeClass("toggled"); |
||
6 | }); |
||
7 | |||
8 | $(".comment-container").click(function (e) { |
||
9 | e.stopPropagation(); |
||
10 | }); |
||
11 | |||
12 | $(this).find("textarea").focus(); |
||
13 | }); |
||
14 |