// popup windows
$('.button').magnificPopup({
type: 'inline',
preloader: false,
callbacks: {
open: function() {
// Will fire when this exact popup is opened
// this - is Magnific Popup object
$(".popup-block .slider").owlCarousel({
items: 1,
nav : false,
navText : "",
loop : true,
dots: true,
autoplay : false,
autoplayHoverPause : true,
fluidSpeed : 600,
autoplaySpeed : 600,
navSpeed : 600,
dotsSpeed : 600,
dragEndSpeed : 600
});
},
close: function() {
// Will fire when popup is closed
}
// e.t.c.
}
// modal: true
});
//google map
$(document).ready(function(){
// window.initMap = function() {
function initMap() {
var myLatLng = {lat: 45.1201, lng: 39.0096};
var map = new google.maps.Map(document.getElementById('map'), {
center: myLatLng,
scrollwheel: false,
zoom: 18
});
var marker = new google.maps.Marker({
position: myLatLng,
map: map,
title: 'Hello World!'
});
}
});
$(function() {
//остальной код
});