tabledrag.js 539 B

123456789101112131415
  1. (function ($) {
  2. /**
  3. * Add an asterisk or other marker to the changed row.
  4. */
  5. Drupal.tableDrag.prototype.row.prototype.markChanged = function () {
  6. var $cell = $('td:first', this.element);
  7. // Find the first appropriate place to insert the marker.
  8. var $target = $($cell.find('.file-size').get(0) || $cell.find('.file').get(0) || $cell.find('.tabledrag-handle').get(0));
  9. if (!$cell.find('.tabledrag-changed').length) {
  10. $target.after(' ' + Drupal.theme('tableDragChangedMarker') + ' ');
  11. }
  12. };
  13. })(jQuery);