Lines 388-394
Link Here
|
388 |
var li_node = $("li.attributes:last"); |
388 |
var li_node = $("li.attributes:last"); |
389 |
var li_clone = $(li_node).clone(); |
389 |
var li_clone = $(li_node).clone(); |
390 |
if ( $(li_clone).find("a.del_attributes").length == 0 ) { |
390 |
if ( $(li_clone).find("a.del_attributes").length == 0 ) { |
391 |
$(li_clone).append('<a href="#" title="Delete" class="del_attributes"><i class="fa fa-fw fa-trash"></i> Delete</a>'); |
391 |
$(li_clone).append('<a href="#" title="' + _("Delete") + '" class="del_attributes"><i class="fa fa-fw fa-trash"></i> ' + _("Delete") + '</a>'); |
392 |
} |
392 |
} |
393 |
$(li_clone).find('select[name="patron_attributes"]').change(function() { |
393 |
$(li_clone).find('select[name="patron_attributes"]').change(function() { |
394 |
updateAttrValues(this); |
394 |
updateAttrValues(this); |
395 |
- |
|
|