You theme you are using is loading a bootstrap.js file this is conflicting with the mDocs bootstrap file.
mDocs is using WordPress best practise when adding scripts so to correct your issue please update your theme with this:
$handle = 'bootstrap.min.js';
$list = 'enqueued';
if (wp_script_is( $handle, $list )) { return; }
else {
wp_register_style( 'bootstrap-style', '//maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css');
wp_enqueue_style( 'bootstrap-style' );
wp_register_script( 'bootstrap.min.js', '//maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js');
wp_enqueue_script( 'bootstrap.min.js' );
}