⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.138
Server IP:
157.245.101.34
Server:
Linux skvinfotech-website 5.4.0-131-generic #147-Ubuntu SMP Fri Oct 14 17:07:22 UTC 2022 x86_64
Server Software:
Apache/2.4.41 (Ubuntu)
PHP Version:
7.4.33
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
var
/
www
/
skvinfotech.com
/
public
/
assets
/
_js
/
pages
/
View File Name :
be_pages_generic_contact.js
/* * Document : be_pages_generic_contact.js * Author : pixelcave * Description: Custom JS code used in Contact Page */ class pageContact { /* * Init Contact Map functionality * */ static contactMap() { new GMaps({ div: '#js-map-contact', lat: 37.75755, lng: -122.43688, zoom: 15, disableDefaultUI: true, scrollwheel: false }).addMarkers([ { lat: 37.75755, lng: -122.43688, title: 'Marker #1', animation: google.maps.Animation.DROP, infoWindow: { content: '<strong>Company</strong>' } } ]); } /* * Init functionality * */ static init() { this.contactMap(); } } // Initialize when page loads jQuery(() => { pageContact.init(); });