JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr{ gilour

File "form-image-crop-20250419154548.js"

Full Path: /home/u369741141/domains/tirondearrastre.com/public_html/js/pages/form-image-crop-20250419154548.js
File size: 773 bytes
MIME-type: text/plain
Charset: utf-8

$( document ).ready(function() {
    
    "use strict";
    
    var $image = $(".image-crop > img");

    $image.cropper({
        aspectRatio: 7 / 5,
        preview: ".img-preview"
    });
    
    $("#zoomIn").click(function() {
        $image.cropper('zoom', 0.1);
    });

    $("#zoomOut").click(function() {
        $image.cropper('zoom', -0.1);
    });

    $("#rotateLeft").click(function() {
        $image.cropper('rotate', 45);
    });

    $("#rotateRight").click(function() {
        $image.cropper('rotate', -45);
    });
    
    $("#clear").click(function() {
        $image.cropper('clear');
    });
    
    var $replaceWith = $('#replaceWith');
    $('#replace').click(function () {
      $image.cropper('replace', $replaceWith.val());
    });
    
});