2016-02-09 00:12:54 +01:00
|
|
|
ready = function() {
|
2016-03-08 15:30:32 +01:00
|
|
|
$.each($('[data-switch]'), function(key, value){
|
|
|
|
$(this).bootstrapSwitch({ offText: value.getAttribute('data-offText'), onText: value.getAttribute('data-onText')});
|
|
|
|
});
|
2016-02-09 00:12:54 +01:00
|
|
|
$('[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);
|