X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=library%2Fcropper%2Fcropper.html;h=ebdf1ffc260843c7bce95ee98878ce1b428af0d3;hb=eccc06914cecdaf4f7123f5d24c2506166aa6379;hp=2362352474927787b693b256c1db158caec103a6;hpb=c3139fa0fd49b0b4de4568d46a6946c75ccb2a62;p=friendica.git diff --git a/library/cropper/cropper.html b/library/cropper/cropper.html index 2362352474..ebdf1ffc26 100644 --- a/library/cropper/cropper.html +++ b/library/cropper/cropper.html @@ -40,17 +40,17 @@ JavaScript: 1. function onEndCrop( coords, dimensions ) { 2. - $( 'x1' ).value = coords.x1; + $PR( 'x1' ).value = coords.x1; 3. - $( 'y1' ).value = coords.y1; + $PR( 'y1' ).value = coords.y1; 4. - $( 'x2' ).value = coords.x2; + $PR( 'x2' ).value = coords.x2; 5. - $( 'y2' ).value = coords.y2; + $PR( 'y2' ).value = coords.y2; 6. - $( 'width' ).value = dimensions.width; + $PR( 'width' ).value = dimensions.width; 7. - $( 'height' ).value = dimensions.height; + $PR( 'height' ).value = dimensions.height; 8. }