Guest User

Untitled

a guest
Apr 20th, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. function initialize(x1, x2, y1, y2, min_width, min_height, ratio_x, ratio_y) {
  2. // function() {
  3. new Cropper.Img(
  4. 'edited_picture',
  5. {
  6. ratioDim: { x: ratio_x, y: ratio_y },
  7. minWidth: min_width,
  8. minHeight: min_height,
  9. onloadCoords: {
  10. x1: x1,
  11. y1: y1,
  12. x2: x2,
  13. y2: y2
  14. },
  15. displayOnInit: true,
  16. onEndCrop: onEndCrop
  17. }
  18. )
  19. // }
  20. }
Add Comment
Please, Sign In to add comment