Ya lo solucione:
Código HTML:
Ver original.modal-body {
max-height: 350px;
padding: 15px;
overflow-y: auto;
-webkit-overflow-scrolling: touch;
}
y añadir:
Código Javascript
:
Ver original$('#mymodal').on('show', function(e) {
var modal = $(this);
modal.css('position', "fixed")
.css('height','170px')
.css('width', 'auto')
.css('margin','0')
.css('top', "3%")
.css('left', "3%")
.css('right', "3%")
.css('bottom', "3%");
return this;
});
Lo dejo por si a alguien le sirve de ayuda.