{"version":3,"file":"utilities/jQueryHelper/jQueryHelperLegacyBundle.js","mappings":";AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA","sources":["webpack://site-client-side/./src/utilities/jQueryHelper/jQueryHelperLegacy.ts"],"sourcesContent":["/*\r\n*Any changes to this file will need to be made to the non-legacy file as well.\r\n*/\r\nclass JQueryHelperLegacy {\r\n static SafeApplyPopover(element, options) {\r\n // Ensure jQuery and popover is loaded before running popover\r\n if (typeof jQuery != \"undefined\" && typeof jQuery.fn['popover'] === \"function\") {\r\n return jQuery(element).popover(options);\r\n }\r\n else {\r\n console.warn(\"jQuery popover is not defined. This may be a third party script issue\");\r\n return jQuery();\r\n }\r\n }\r\n static SafeApplyTooltip(element) {\r\n // Ensure jQuery and tooltip is loaded before running tooltip\r\n if (typeof jQuery != \"undefined\" && typeof jQuery.fn['tooltip'] === \"function\") {\r\n const $element = jQuery(element);\r\n $element.tooltip();\r\n return;\r\n }\r\n else {\r\n console.warn(\"jQuery tooltip is not defined. This may be a third party script issue\");\r\n return;\r\n }\r\n }\r\n static SafeApplyCollapse(element, options) {\r\n // Ensure jQuery and collapse is loaded before running collapse\r\n if (typeof jQuery != \"undefined\" && typeof jQuery.fn['collapse'] === \"function\") {\r\n const $element = jQuery(element);\r\n $element.collapse(options);\r\n return;\r\n }\r\n else {\r\n console.warn(\"jQuery collapse is not defined. This may be a third party script issue\");\r\n return;\r\n }\r\n }\r\n}\r\n// Attach the JQueryHelperLegacy to the window object\r\nwindow.JQueryHelperLegacy = JQueryHelperLegacy;\r\n"],"names":[],"sourceRoot":""}