ユーザーが閉じるボタンをクリックしたときにのみモーダルを閉じたい。ご覧のとおり、コードのこの部分を modal.js から上書きする必要があります。
hide: function (e) {
e && e.preventDefault()
var that = this
e = $.Event('hide')//if I delete this line modal won't hide
this.$element.trigger(e)
if (!this.isShown || e.isDefaultPrevented()) return
this.isShown = false
$('body').removeClass('modal-open')
escape.call(this)
this.$element.removeClass('in')
$.support.transition && this.$element.hasClass('fade') ?
hideWithTransition.call(this) :
hideModal.call(this)
私は正しい道を進んでいますか?