Thank you for this module!
I have tried module, and my experience was that the line 18 in weight.js is wrong.

Original version:

    $('fieldset#edit-weight', context).drupalSetSummary(function(context) {
      return Drupal.t('Weight: !weight', {'!weight' : $('#edit-weight--2 option:selected').val()});
    });

I think, this is the right solution:

    $('fieldset#edit-weight', context).drupalSetSummary(function(context) {
      return Drupal.t('Weight: !weight', {'!weight' : $('#edit-weight-weight option:selected').val()});
    });

Comments

davisben’s picture

Status: Active » Fixed

You are correct! This looks like a result of #1539766: Node weight conflicts/duplicates ubercart 7.x-3.0's shipment weight. Committed to 7.x-2.x.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.