curriculum/lib/main.js

17 lines
483 B
JavaScript
Raw Normal View History

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();
var salutation = bonsoir.salutation();
Swal.fire({
title: 'Email',
html: salutation + "! Vous pouvez m'envoyer un mail à <strong><a href='mailto:anthony@dumas.cc'>anthony@dumas.cc</a></strong> !",
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
});