現在の画像が表示され始めた場合、サムネイルリンクを無効にするにはどうすればよいですか?
<script type="text/javascript">
$(function() {
$(".image").click(function() {
var image = $(this).attr("rel");
$('#image').hide();
$('#image').fadeIn('slow');
$('#image').html('<img src="' + image + '"/>');
return false;
});
});
<a href="#" rel="<%= image.photo.url(:small) %>" class="image">
<%= image_tag(image.photo.url(:thumb)) if image.photo %>
</a>