I have a javascript file that communicates to a controller class, which in turn delegates which function to run to a transactions class.
Is it better to have the transactions class broken up into multiple smaller files and then in my switch statement include which ever smaller file i need? or should i have all my transactions in one file?
I know keeping file size down is always a good idea, but will that affect my ajax functions if my transactions file starts getting pretty lengthy?