When using the each method from jquery, I alway get a "inconsistent indentation" error on the 2nd line, where says frag += in this example:
$.each content, (index, obj) ->
frag +=
template.replace( /{{title}}/ig, obj.title )
.replace( /{{thumbnail}}/ig, obj.thumbnail )
Is this a compatibility issue?
When using the each method from jquery, I alway get a "inconsistent indentation" error on the 2nd line, where says
frag +=in this example:Is this a compatibility issue?