2011-08-23 03:40:13 +04:00
|
|
|
/**
|
|
|
|
* Copyright (c) 2011, Robin Appelman <icewind1991@gmail.com>
|
|
|
|
* This file is licensed under the Affero General Public License version 3 or later.
|
|
|
|
* See the COPYING-README file.
|
|
|
|
*/
|
|
|
|
|
2011-04-18 17:07:14 +04:00
|
|
|
$(document).ready(function(){
|
|
|
|
$("#passwordbutton").click( function(){
|
2011-08-28 01:40:41 +04:00
|
|
|
if ($('#pass1').val() != '' && $('#pass2').val() != '') {
|
|
|
|
// Serialize the data
|
|
|
|
var post = $( "#passwordform" ).serialize();
|
|
|
|
$('#passwordchanged').hide();
|
|
|
|
$('#passworderror').hide();
|
|
|
|
// Ajax foo
|
|
|
|
$.post( 'ajax/changepassword.php', post, function(data){
|
|
|
|
if( data.status == "success" ){
|
|
|
|
$('#pass1').val('');
|
|
|
|
$('#pass2').val('');
|
|
|
|
$('#passwordchanged').show();
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
$('#passworderror').html( data.data.message );
|
|
|
|
$('#passworderror').show();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
return false;
|
|
|
|
} else {
|
2011-08-28 03:12:10 +04:00
|
|
|
$('#passwordchanged').hide();
|
|
|
|
$('#passworderror').show();
|
2011-08-28 01:40:41 +04:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2011-04-18 17:07:14 +04:00
|
|
|
});
|
2011-08-28 03:46:20 +04:00
|
|
|
|
2011-09-26 23:10:56 +04:00
|
|
|
$('#lostpassword #email').blur(function(event){
|
2012-04-15 19:09:11 +04:00
|
|
|
if ($(this).val() == this.defaultValue){
|
|
|
|
return;
|
|
|
|
}
|
2011-09-26 23:10:56 +04:00
|
|
|
event.preventDefault();
|
2012-04-15 19:09:11 +04:00
|
|
|
this.defaultValue = $(this).val();
|
2011-09-26 23:10:56 +04:00
|
|
|
OC.msg.startSaving('#lostpassword .msg');
|
|
|
|
var post = $( "#lostpassword" ).serialize();
|
|
|
|
$.post( 'ajax/lostpassword.php', post, function(data){
|
|
|
|
OC.msg.finishedSaving('#lostpassword .msg', data);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2011-08-28 03:46:20 +04:00
|
|
|
$("#languageinput").chosen();
|
|
|
|
|
2011-06-20 16:33:02 +04:00
|
|
|
$("#languageinput").change( function(){
|
|
|
|
// Serialize the data
|
|
|
|
var post = $( "#languageinput" ).serialize();
|
|
|
|
// Ajax foo
|
|
|
|
$.post( 'ajax/setlanguage.php', post, function(data){
|
|
|
|
if( data.status == "success" ){
|
2011-08-28 01:06:15 +04:00
|
|
|
location.reload();
|
2011-06-20 16:33:02 +04:00
|
|
|
}
|
|
|
|
else{
|
|
|
|
$('#passworderror').html( data.data.message );
|
|
|
|
}
|
|
|
|
});
|
|
|
|
return false;
|
|
|
|
});
|
2011-04-18 17:07:14 +04:00
|
|
|
} );
|
2011-09-11 19:20:23 +04:00
|
|
|
|
|
|
|
OC.msg={
|
|
|
|
startSaving:function(selector){
|
|
|
|
$(selector)
|
|
|
|
.html( t('settings', 'Saving...') )
|
|
|
|
.removeClass('success')
|
|
|
|
.removeClass('error')
|
|
|
|
.stop(true, true)
|
|
|
|
.show();
|
|
|
|
},
|
|
|
|
finishedSaving:function(selector, data){
|
|
|
|
if( data.status == "success" ){
|
|
|
|
$(selector).html( data.data.message )
|
|
|
|
.addClass('success')
|
|
|
|
.stop(true, true)
|
|
|
|
.delay(3000)
|
|
|
|
.fadeOut(600);
|
|
|
|
}else{
|
|
|
|
$(selector).html( data.data.message ).addClass('error');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|