Skip to content

Commit

Permalink
Fixed broken rowlink caused by check on .rowlink-skip. Fixed #221
Browse files Browse the repository at this point in the history
Thanks @cervengoc
  • Loading branch information
jasny committed Apr 19, 2014
1 parent 249cb84 commit 1001ad2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/rowlink.js
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
// ==================

$(document).on('click.bs.rowlink.data-api', '[data-link="row"]', function (e) {
if ($(e.target).closest('.rowlink-skip')) return
if ($(e.target).closest('.rowlink-skip').length !== 0) return

var $this = $(this)
if ($this.data('rowlink')) return
Expand Down

0 comments on commit 1001ad2

Please sign in to comment.