comment-reply.js disables any other form javascript

I found the cuplrit and has nothing to do with comment-reply.js.

I was targeting my javascript based on which template and of course the javascript wasn’t loading.

if( $("body").hasClass("page") ){ ...

Needed to add this:

if( $("body").hasClass("page") || $("body").hasClass("single") ){ ...