Closed (fixed)
Project:
Weight
Version:
7.x-2.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
8 May 2012 at 20:59 UTC
Updated:
22 May 2012 at 22:00 UTC
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
Comment #1
davisbenYou 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.