私はjs2coffeeを使用していましたが、unexpected identifier
.
$.fn.wait = function( ms, callback ) {
return this.each(function() {
window.setTimeout((function( self ) {
return function() {
callback.call( self );
}
}( this )), ms );
});
};
私のコーヒーバージョン:
$.fn.wait = (ms, callback) ->
@each ->
window.setTimeout ((self) ->
->
callback.call self
(this)), ms