/
home2
/
cecillin
/
public_html
/
ited
/
wp-content
/
plugins
/
googleanalytics
/
js
/
Upload File
HOME
/** * Google Analytics loader script. * * @package GoogleAnalytics */ (function ($) { ga_loader = { show: function () { $( '.ga-loader' ).show(); }, hide: function () { $( '.ga-loader' ).hide(); } }; ga_tools = { getCurrentWidth: function (wrapperSelector) { return $( wrapperSelector ).width(); }, recomputeChartWidth: function (minWidth, offset, wrapperSelector) { const currentWidth = ga_tools.getCurrentWidth( wrapperSelector ); if (currentWidth >= minWidth) { return parseInt( currentWidth - offset ); } else { return minWidth; } } }; })( jQuery );