roseweixel/lacquer-lover

View on GitHub
app/assets/javascripts/transactions.js

Summary

Maintainability
A
0 mins
Test Coverage
$(function(){
  $('.toggle-form input').hide();
  $(document).on('click', '.toggle-form-label', function(){
    $(this).siblings('input').slideToggle();
  });
});