spree-contrib/spree_print_invoice

View on GitHub
app/assets/javascripts/spree/backend/print_invoice_settings.js

Summary

Maintainability
A
0 mins
Test Coverage
$(function() {
  var storage_path_field;
  storage_path_field = $('#storage_path');
  return $('#store_pdf').click(function() {
    return storage_path_field.prop('disabled', !$(this).prop('checked'));
  });
});