Previous window.onload handlers not being called

MiniProfiler injects the following JS into the page:

var o = window.onload;
window.onload = function(){{if(o)o; deferInit()}};

The intensions are good, but the old window.onload isn’t being called! It needs to be if(o) o(); instead of if(o) o;

Thanks,
Brian

yeah … will fix … oops

fixed on github