2019-03-23 23:35:17 +01:00
|
|
|
"use strict";
|
2019-02-25 00:47:08 +01:00
|
|
|
|
2019-03-23 23:35:17 +01:00
|
|
|
var $btnMail = $("#btn-mail");
|
|
|
|
$btnMail.removeAttr("disabled");
|
|
|
|
$btnMail.click(function (evt) {
|
|
|
|
evt.preventDefault();
|
2019-05-07 15:24:21 +02:00
|
|
|
var salutation = bonsoir.salutation();
|
2019-03-24 01:03:46 +01:00
|
|
|
Swal.fire({
|
|
|
|
title: 'Email',
|
2019-05-07 15:24:21 +02:00
|
|
|
html: salutation + "! Vous pouvez m'envoyer un mail à <strong><a href='mailto:anthony@dumas.cc'>anthony@dumas.cc</a></strong> !",
|
2019-03-24 01:03:46 +01:00
|
|
|
imageUrl: './images/mail.jpg',
|
|
|
|
imageWidth: 400,
|
|
|
|
imageHeight: 200,
|
|
|
|
imageAlt: 'Custom image',
|
|
|
|
animation: false
|
2019-03-23 23:35:17 +01:00
|
|
|
});
|
2019-02-25 00:47:08 +01:00
|
|
|
});
|