I am currently trying to get jSignature ( a plugin to capture signatures) to work inside the twitter bootstrap modals. For some reason the signature box is getting shrunk to fit inside the modal and making the signature not work properly. Here is a jsFiddle for reference http://jsfiddle.net/someyoungideas/3B3jS/ .
<!-- Button to trigger modal -->
<a href="#myModal" role="button" class="btn" data-toggle="modal">Launch demo modal</a>
<!-- Modal -->
<div id="myModal" class="modal hide fade" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h3 id="myModalLabel">Modal header</h3>
</div>
<div class="modal-body">
<p id="signature"></p>
</div>
<div class="modal-footer">
<button class="btn" data-dismiss="modal" aria-hidden="true">Close</button>
<button class="btn btn-primary">Save changes</button>
</div>
</div>
Thanks
min-height, but that didn't help. – DJDavid98 Jan 21 at 18:40