blob: 8d8d2e795342d33f06e770c0322744530782c5a5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
/**
* Page-specific Javascript file. Should generally be included as a separate asset bundle in your page template.
* example: {{ assets.js('js/pages/sign-in-or-register') | raw }}
*
* This script depends on validation rules specified in pages/partials/page.js.twig.
*
* Target page: account/settings
*/
$(document).ready(function() {
// Apply select2 to locale field
$('.js-select2').select2();
$("#account-settings").ufForm({
validators: page.validators.account_settings,
msgTarget: $("#alerts-page")
}).on("submitSuccess.ufForm", function() {
// Reload the page on success
window.location.reload();
});
$("#profile-settings").ufForm({
validators: page.validators.profile_settings,
msgTarget: $("#alerts-page")
}).on("submitSuccess.ufForm", function() {
// Reload the page on success
window.location.reload();
});
});
|