mirror of
https://github.com/danbee/danbarberphoto
synced 2025-03-04 08:49:07 +00:00
11 lines
218 B
JavaScript
11 lines
218 B
JavaScript
$(document).ready(function() {
|
|
return $(".fancy").fancybox({
|
|
afterLoad: function() {
|
|
$.ajax({
|
|
type: "POST",
|
|
url: "/photos/" + (this.element.data("id")) + "/views",
|
|
});
|
|
}
|
|
});
|
|
});
|