| 1 |
/* |
| 2 |
* Google Maps Widget |
| 3 |
* (c) Web factory Ltd, 2012 - 2014 |
| 4 |
*/ |
| 5 |
|
| 6 |
jQuery(function($) { |
| 7 |
$('a.gmw-thumbnail-map.gmw-lightbox-enabled').click(function() { |
| 8 |
dialog = $($(this).attr('href')); |
| 9 |
map_width = dialog.attr('data-map-width'); |
| 10 |
map_height = dialog.attr('data-map-height'); |
| 11 |
map_url = dialog.attr('data-map-iframe-url'); |
| 12 |
map_title = dialog.attr('title'); |
| 13 |
map_skin = dialog.attr('data-map-skin'); |
| 14 |
|
| 15 |
var content = $(dialog.html()); |
| 16 |
content.filter('.gmw-map').html('<iframe width="' + map_width + 'px" height="' + map_height + 'px" src="' + map_url + '"></iframe>'); |
| 17 |
|
| 18 |
$.colorbox({ html: content, title: map_title, className: 'gmw-' + map_skin, closeButton: false }); |
| 19 |
|
| 20 |
return false; |
| 21 |
}); |
| 22 |
}); // onload |