ref: dockerize
plugins/shopping_cart/public/edit.js
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
$('#settings_enabled').click(function(){ $('#delivery-settings').toggle('fast'); }); $('#delivery-settings').toggle($('#settings_enabled').prop('checked')) $('#add-new-option').click(function(){ new_option = $('#empty-option').clone(); new_option.removeAttr('id'); $('#add-new-option-row').before(new_option); new_option.show(); return false; }); $('.remove-option').live('click', function(){ $(this).closest('tr').remove(); return false; }); |