Open BitStinker opened 8 years ago
I havent used jQuery mobile recently but have you tried setting a fixed height on jsignature container or trying to intialise it on jQuery mobile's pageload instead?
I tried both. The 'resize' technique is quick and easy, so that's what I've been using.
In a jQuery mobile environment, using the pagechange event...
If I do this:
$( '#signoff' ).jSignature();
I get a signature canvas the wrong height.
If I do this:
$( '#signoff' ).jSignature(); $( '#thepage' ).trigger( 'resize' );
I get the correct height canvas.