You can watch it break here, only in IE - currently it breaks on the first view to be called (the header):
http://alpha.doanything.com/The error in IE looks like this:
'doanything_views_header_view_ejs' is undefined
It says it is coming from the call, which occurs in "eval code, line 3 character 5":
//@ sourceURL=doanything_views_header_view_ejs.js
Here's how I load the view in the header controller:
load: function(){
$('#header').html( this.view('view') );
}
I load most of my views just like this and the issue occurs every time in IE (if I disable the header, it errors on the next one.) The strange thing is though, it does seem to load other views even though the error occurs. But I've tried clearing out the contents of the EJS files and its doesnt seem to matter what's in them.
This just started happening today, so obviously it's something I've done since I last tested in IE, but it seems totally random.