Classes defined in 1 file does not appear to be available in other files. I tried declaring them like
class exports.Todo extends Backbone.Model ...
...
exports = exports ? this
But it appears in the compiled JS, exports is defined in the closure thus not available in other files anyways.
// Generated by CoffeeScript 1.3.3
(function() {
var exports, ...
Whats the proper way to do this? I could use class window.Todo ... which appears to work ... but not really in my JS Test Driver ...