diff options
author | Aleksander Machniak <alec@alec.pl> | 2014-08-05 07:45:20 -0400 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2014-08-05 07:45:20 -0400 |
commit | e32da281bb796431d700e39e4ab10b94e3038ee7 (patch) | |
tree | 70eb6957cb849c6cee366f1e08352f9a0bcb3c5a /program | |
parent | 9828c1abe2a5df570028e55fa0356b3a0cac1d76 (diff) |
Make possible to skip some elements from subject cell when creating text for drag layer
Diffstat (limited to 'program')
-rw-r--r-- | program/js/list.js | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/program/js/list.js b/program/js/list.js index cdb1a4687..65e09e878 100644 --- a/program/js/list.js +++ b/program/js/list.js @@ -1506,7 +1506,11 @@ drag_mouse_move: function(e) $('> ' + self.col_tagname(), self.rows[uid].obj).each(function(n, cell) { if (self.subject_col < 0 || (self.subject_col >= 0 && self.subject_col == n)) { - var subject = $(cell).text(); + // remove elements marked with "skip-on-drag" class + cell = $(cell).clone(); + $(cell).find('.skip-on-drag').remove(); + + var subject = cell.text(); if (subject) { // remove leading spaces |