curriculum/lib/main.js

14 lines
220 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({
text: "anthony@dumas.cc",
icon: "info",
button: true
});
2019-02-25 00:47:08 +01:00
});