<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* global jQuery */

jQuery(document).on('action.ready_trx_addons', function() {

	"use strict";
	
	// Click on the logo on home page - scroll to top action
	jQuery('.sc_layouts_logo,.custom-logo-link').on('click', function(e){
		if (jQuery(this).attr('href') == '#' || location.href == jQuery(this).attr('href')) {
			trx_addons_document_animate_to(0);
			e.preventDefault();
			return false;
		}
	});
});</pre></body></html>