How to add scroll dialog to boxing?

I searched on the Internet and was unable to find a solution to add scroll to the custom download dialog. Anyway, I can make it work. I need a vertical scroll.

Is it possible?

+4
source share
1 answer

Bootbox uses a css class with a name modal-bodyfor the body of its dialog; so you can override the class to make it scroll. For example:

.modal-body {
    height: 100px;
    overflow-y: scroll;
}
+5
source

All Articles