BossBey File Manager
PHP:
8.2.30
OS:
Linux
User:
imagivibe
Root
/
home
/
imagivibe
/
public_html
/
CTR
/
wp-content
/
plugins
/
porto-functionality
/
shortcodes
/
assets
/
js
📤 Upload
📝 New File
📁 New Folder
Close
Editing: hotspot.js
/** * Hotspot popup of mobile * * @since 3.3.0 */ ( function( $ ) { $( document ).ready( function() { if ( window.innerWidth <= 768 ) { $( '.porto-hotspot .popup-wrap' ).each( function() { var content = $( this ); var offsetLeft = content.offset().left; var offsetRight = window.innerWidth - ( offsetLeft + content.outerWidth() ); if ( offsetLeft <= 0 ) { content.css( 'marginLeft', Math.abs( offsetLeft - 15 ) + 'px' ); } if ( offsetRight <= 0 ) { content.css( 'marginLeft', offsetRight - 15 + 'px' ); } }); } } ); } )( jQuery );
Save
Cancel