mirror of
https://github.com/discourse/discourse.git
synced 2025-02-13 17:02:44 +08:00
![David Taylor](/assets/img/avatar_default.png)
All files under `app/assets/javascripts/scripts` will be run through babel, given sourcemaps, and output under `/assets/{name}.js`. This is another step towards removing our sprockets dependence.
20 lines
638 B
JavaScript
20 lines
638 B
JavaScript
(function () {
|
|
setTimeout(function () {
|
|
const $activateButton = $("#activate-account-button");
|
|
$activateButton.on("click", function () {
|
|
$activateButton.prop("disabled", true);
|
|
const hpPath = document.getElementById("data-activate-account").dataset
|
|
.path;
|
|
$.ajax(hpPath)
|
|
.then(function (hp) {
|
|
$("#password_confirmation").val(hp.value);
|
|
$("#challenge").val(hp.challenge.split("").reverse().join(""));
|
|
$("#activate-account-form").submit();
|
|
})
|
|
.fail(function () {
|
|
$activateButton.prop("disabled", false);
|
|
});
|
|
});
|
|
}, 50);
|
|
})();
|