File: //proc/1526/task/1526/cwd/shoetique/wp-content/plugins/googleanalytics/js/googleanalytics.js
/**
 * 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 );