Commit 6990f8a8464fd579c7152512d3d3b25b60b6f5c9
1 parent
8ae2d215
Exists in
spb-stable
and in
2 other branches
Replace jquery deprecated .live with .on
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
app/assets/javascripts/commits.js.coffee
| ... | ... | @@ -12,7 +12,7 @@ class CommitsList |
| 12 | 12 | $('.loading').hide() |
| 13 | 13 | |
| 14 | 14 | @init: (ref, limit) -> |
| 15 | - $(".day-commits-table li.commit").live 'click', (event) -> | |
| 15 | + $("body").on "click", ".day-commits-table li.commit", (event) -> | |
| 16 | 16 | if event.target.nodeName != "A" |
| 17 | 17 | location.href = $(this).attr("url") |
| 18 | 18 | e.stopPropagation() | ... | ... |