Rails 3.2 と Colorbox を使用します。私は次のものを持っています:
<%= link_to image_tag(photo.data.url(:picture_thumb), :alt => '', :title => ''),
photo.data.url(:picture_lightbox),
:class => "gallery",
:"data-title" => %(
#{link_to("Delete",
spot_photo_path(@spot, photo),
:method => :delete,
:confirm => "Are you sure you want to delete this picture? Your unsaved changes will be lost.", :class => "delete_photo")}
)
%>
$(".gallery").colorbox({
rel: "gallery",
width: "95%",
height: "95%",
current: "{current} of {total}",
title: function() {
return $(this).data("title");
}
});
リンクをクリックすると、以下の多くのエラーが発生しました。
Uncaught RangeError: Maximum call stack size exceeded.
私は本当にこれを修正する方法を見つけることができませんか?