3.8 Media Upload and Custom Meta Box

I’m an idiot.

The reason the media uploader was not working, was because the post type I was using this on only had the title field set up in post type support. As such wp_enqueue_media() was not included as it normally would have been if the editor was included in post type supports.

To fix this I added

wp_enqueue_media();

to my cpt registration function.