curriculum/lib/main.js

18 lines
429 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();
Swal.fire({
title: 'Email',
2019-04-09 15:21:50 +00:00
html: "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
});