Hi @wwang,
You need to stop the button being clickable, I am guessing the class you are adding, called disabled, just makes it look disabled. Normally you would set the disabled attribute:
<button type="button" class="btn btn-info" disabled >Info</button>
You can stop something being clickable with:
.disabled {
pointer-events: none
}