Geeth Welagedara
Geeth Welagedara

Reputation: 614

visible background scroll when dialog is appear

According to the tutorial here I used bootstrap3 dialog. And works well. now want to make as visible background scroll and scroll should work when dialog is appear. How to do it?

$( ".target" ).click(function() {
    BootstrapDialog.show({                
        title: 'Default Title',
        message: $(this).attr("article")              
    });
});

Upvotes: 0

Views: 67

Answers (1)

Kapil
Kapil

Reputation: 1141

Try this

.modal-open {
    overflow: auto !important;
}

Upvotes: 1

Related Questions