0
0
mirror of https://github.com/Doodle3D/doodle3d-connect.git synced 2024-07-08 21:50:43 +02:00
doodle3d-connect/js/libs/.jquery.mobile/demos/popup-image-scaling/popup-image-scaling.js
2014-05-08 14:59:07 +02:00

9 lines
230 B
JavaScript

$( document ).on( "pagecreate", function() {
$( ".photopopup" ).on({
popupbeforeposition: function() {
var maxHeight = $( window ).height() - 60 + "px";
$( ".photopopup img" ).css( "max-height", maxHeight );
}
});
});