/home/techb158/dev.aleamaralawal.com/wp-content/plugins/gravityforms/js
NameSizeModeActions
components/-0755rm
vendor/-0755rm
chosen.jquery.min.js291210644editdlrm
conditional_logic.js254200644editdlrm
conditional_logic.min.js99610644editdlrm
datepicker-legacy.js15650644editdlrm
datepicker-legacy.min.js9590644editdlrm
datepicker.js69130644editdlrm
datepicker.min.js29950644editdlrm
duplicate-submissions.js32170644editdlrm
duplicate-submissions.min.js9030644editdlrm
forms.js19330644editdlrm
forms.min.js10360644editdlrm
form_admin.js661060644editdlrm
form_admin.min.js341850644editdlrm
form_editor.js1727450644editdlrm
form_editor.min.js1101650644editdlrm
gforms_hooks.js41010644editdlrm
gforms_hooks.min.js21390644editdlrm
gf_field_filter.js126340644editdlrm
gf_field_filter.min.js58940644editdlrm
gravityforms.js1093840644editdlrm
gravityforms.min.js454880644editdlrm
index.php270644editdlrm
jquery.json-1.3.js48840644editdlrm
jquery.json-1.3.min.js17200644editdlrm
jquery.json.js52560644editdlrm
jquery.json.min.js18230644editdlrm
jquery.maskedinput-1.3.1.min.js44120644editdlrm
jquery.maskedinput.js106520644editdlrm
jquery.maskedinput.min.js41590644editdlrm
jquery.textareaCounter.plugin.js62350644editdlrm
jquery.textareaCounter.plugin.min.js19330644editdlrm
layout_editor.js412340644editdlrm
layout_editor.min.js131130644editdlrm
page_conditional_logic.js54090644editdlrm
page_conditional_logic.min.js23960644editdlrm
placeholders.jquery.min.js46390644editdlrm
plugin_settings.js18770644editdlrm
plugin_settings.min.js11730644editdlrm
preview.js22690644editdlrm
preview.min.js14680644editdlrm
shortcode-ui.js263460644editdlrm
shortcode-ui.min.js109100644editdlrm
skip.js1270644editdlrm
skip.min.js550644editdlrm
tooltip_init.js24330644editdlrm
tooltip_init.min.js13560644editdlrm
Edit: /home/techb158/dev.aleamaralawal.com/wp-content/plugins/gravityforms/js/tooltip_init.js (2433B)
jQuery( function() { gform_initialize_tooltips(); } ); function gform_initialize_tooltips() { var $tooltips = jQuery( '.gf_tooltip' ); if ( ! $tooltips.length ) { return; } $tooltips.tooltip( { show: { effect: 'fadeIn', duration: 200, delay: 100, }, position: { my: 'center bottom', at: 'center-3 top-11', }, tooltipClass: 'arrow-bottom', items: '[aria-label]', content: function () { var content = jQuery( this ).attr( 'aria-label' ); return gform_strip_scripts( content ); }, open: function ( event, ui ) { if ( typeof ( event.originalEvent ) === 'undefined' ) { return false; } // set the tooltip offset on reveal based on tip width and offset of trigger to handle dynamic changes in overflow setTimeout( function() { var leftOffset = ( this.getBoundingClientRect().left - ( ( ui.tooltip[0].offsetWidth / 2 ) - 5 ) ).toFixed(3); ui.tooltip.css( 'left', leftOffset + 'px' ); }.bind( this ), 100 ); var $id = ui.tooltip.attr( 'id' ); jQuery( 'div.ui-tooltip' ).not( '#' + $id ).remove(); }, close: function ( event, ui ) { ui.tooltip.hover( function () { jQuery( this ).stop( true ).fadeTo( 400, 1 ); }, function () { jQuery( this ).fadeOut( '500', function () { jQuery( this ).remove(); } ); } ); } } ); } /** * Sanitizes a given piece of HTML markup by removing script tags from it. * * @param {string} content The HTML content to sanitize. * * @return {string} */ function gform_strip_scripts( content ) { var tempWrapper = document.createElement( 'div' ); tempWrapper.innerHTML = content; var scripts = tempWrapper.getElementsByTagName( 'script' ); for ( var i = 0; i < scripts.length; i++ ) { scripts[ i ].parentNode.removeChild( scripts[ i ] ); } return tempWrapper.innerHTML; } function gform_system_shows_scrollbars() { var parent = document.createElement("div"); parent.setAttribute("style", "width:30px;height:30px;"); parent.classList.add('scrollbar-test'); var child = document.createElement("div"); child.setAttribute("style", "width:100%;height:40px"); parent.appendChild(child); document.body.appendChild(parent); var scrollbarWidth = 30 - parent.firstChild.clientWidth; document.body.removeChild(parent); return scrollbarWidth ? true : false; }