@jedierikb - I think you know the answer, as you helped us with this! But for the sake of others...
In Modernizr 2.x, it takes a little bit of manual work. Async detects will be undefined until they complete, so...:
<script src="path/to/modernizr.js"></script>
<script>
(function withDataURL () {
if (typeof Modernizr.todataurljpeg !== 'undefined') {
// Do things with `Modernizr.todataurljpeg`
}
else {
setTimeout(withDataURL, 100);
}
}());
</script>
Alternatively, use a watch library/shim/plugin, e.g. https://gist.github.com/eligrey/384583
In Modernizr 3.0, we're making 2 relevant changes:
- Canvas
todataurl detects are all synchronous (thanks to @jedierikb)
- Other synchronous detects will have first-class support, probably with callbacks (we're still working out the finer details of this)