X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=library%2Fcropper%2Fcropper.html;h=ebdf1ffc260843c7bce95ee98878ce1b428af0d3;hb=9cb100228a431fbc31ff063b57418a8746b3dd83;hp=2362352474927787b693b256c1db158caec103a6;hpb=4bee1859be5fbf46ecc19728a908e31b4e9b09b6;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. }