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

File "ui-modals.js"

Full Path: /home/u369741141/domains/tirondearrastre.com/public_html/js/pages/ui-modals.js
File size: 602 bytes
MIME-type: text/plain
Charset: utf-8

$('#exampleModal').on('show.bs.modal', function (event) {
    
    "use strict";
    
  var button = $(event.relatedTarget) // Button that triggered the modal
  var recipient = button.data('whatever') // Extract info from data-* attributes
  // If necessary, you could initiate an AJAX request here (and then do the updating in a callback).
  // Update the modal's content. We'll use jQuery here, but you could use a data binding library or other methods instead.
  var modal = $(this)
  modal.find('.modal-title').text('New message to ' + recipient)
  modal.find('.modal-body input').val(recipient)
})