I just added a new commit on GitHub. The change event now includes a second argument, which contains all of the hidden inputs. This will allow you to count them to see if any are selected:
jQuery('.rwmb-file_upload').on( 'change', function( event, items) {
if ( items.length ) {
//code here
}
});