mirror of
https://github.com/maxpozdeev/mytinytodo.git
synced 2026-03-11 08:55:27 +00:00
- bugfix: can not change password in Opera
This commit is contained in:
parent
0a9955d2a4
commit
538ad0f135
1 changed files with 1 additions and 1 deletions
|
|
@ -2146,7 +2146,7 @@ function saveSettings(frm)
|
|||
{
|
||||
if(!frm) return false;
|
||||
var params = { save:'ajax' };
|
||||
$(frm).find("input:text,input:checked,select,:password").filter(":enabled").each(function() { params[this.name || '__'] = this.value; });
|
||||
$(frm).find("input:text,input:password,input:checked,select").filter(":enabled").each(function() { params[this.name || '__'] = this.value; });
|
||||
$(frm).find(":submit").attr('disabled','disabled').blur();
|
||||
$.post(_mtt.mttUrl+'settings.php', params, function(json){
|
||||
if(json.saved) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue