15 lines
531 B
JavaScript
15 lines
531 B
JavaScript
ready = function() {
|
|
$.each($('[data-switch]'), function(key, value){
|
|
$(this).bootstrapSwitch({ offText: value.getAttribute('data-offText'), onText: value.getAttribute('data-onText')});
|
|
});
|
|
$('[data-switch]').on('switchChange.bootstrapSwitch', function(event, state) {
|
|
$(this).closest('form').submit();
|
|
});
|
|
|
|
$('#edit_user_1').on("ajax:error", function(xhr, status, error) {
|
|
alert("An error occured. Your account has not been updated.");
|
|
});
|
|
}
|
|
|
|
$(document).ready(ready);
|
|
$(document).on('page:load', ready);
|