I've a weird bug where AngularJS doesn't appear to parse/compile the mustache and bind it to a variable on the first loading of the site (see screenshot). The problem goes away if I enter into development mode and refresh the page; hence it becomes hard to debug since I can't see the errors.

There is a live version of the site available at http://www.notable.ac
 
				
				If it's the console issue...
Just add a stub in the root of your JS:
//make sure console.log exists in ie.
window.console = window.console || {};
window.console.log = window.console.log || function(){};
console is not available in IE with dev tools disabled, you can just test:
if(console && console.log) { 
  console.log('ok');
}