@element.stop().animate
scrollLeft: @left
scrollTop: @top
, @options.duration, "linear"
オンラインインタプリタ(coffeescript.org)でコンパイルして次のようにします。
this.element.animate({
scrollLeft: this.left,
scrollTop: this.top
}, this.options.duration, "linear");
しかし、仲介者(スプロケットを使用)は「。」に関する例外をスローします。「@options.duration」内:
Uncaught Error: ExecJS::ProgramError: Error: Parse error on line 131:
Unexpected '.' (in */source/javascripts/views/scene.js.coffee) application.js:1
(anonymous function)
私はコーヒースクリプトに不慣れです。スプロケットのバグのように見えますか?