coffescript で、jquery コールバックからクラス メソッドを呼び出したいのですが、クラスのスコープにアクセスするにはどうすればよいですか? this.loadImage(currentIndex) は動作しません
class ImageCarousel
currentIndex = 0
jsonPath = "json/images.json"
images = null
constructor: () ->
this.loadJson()
loadJson: () ->
$.ajax jsonPath,
success : (data, status, xhr) ->
console.log("yea "+data)
this.images = data.images
this.loadImage(currentIndex)
error : (xhr, status, err) ->
console.log("nah "+err)
complete : (xhr, status) ->
console.log("comp")
loadImage:(@index) ->
console.log("load image "+@index)