1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 15:35:55 +00:00

combine user edit & user details

This commit is contained in:
Andrew Dolgov
2015-08-12 20:19:38 +03:00
parent e2e095233f
commit bf9cc9ad95
3 changed files with 89 additions and 109 deletions

View File

@@ -502,27 +502,6 @@ function infobox_callback2(transport, title) {
}
}
function filterCR(e, f)
{
var key;
if(window.event)
key = window.event.keyCode; //IE
else
key = e.which; //firefox
if (key == 13) {
if (typeof f != 'undefined') {
f();
return false;
} else {
return false;
}
} else {
return true;
}
}
function getInitParam(key) {
return init_params[key];
}

View File

@@ -109,7 +109,6 @@ function editUser(id, event) {
style: "width: 600px",
execute: function() {
if (this.validate()) {
notify_progress("Saving data...", true);
var query = dojo.formToQuery("user_edit_form");