438
| <![CDATA[<script type="text/javascript">
$(function() {
$('a[rel=group]').fancybox();
$("a[rel^='prettyPhoto']").prettyPhoto({
theme: 'light_rounded',
social_tools: '<a target="_blank" download href="#" class="download_image left btn btn-xs btn-default"><span class="glyphicon glyphicon-download-alt"></span> Download</a>'
});
$('body').on('click', '.download_image', function() {
var foto_download = $('#fullResImage').attr('src');
$(this).attr('href', foto_download);
});
$('div.thumbnail').on('click', 'a', function() {
var base_url = "http://www.cmcastelo.es.gov.br/";
var id = $(this).attr('id');
if (id.length) {
$.ajax({
url: base_url + 'galeria/contador_acessos/' + id,
type: "post",
data: {
'id': id
}
});
}
});
});
</script>]]>
|