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

pref-labels, save: do not escape unnecessary newline

This commit is contained in:
Andrew Dolgov
2009-01-18 10:54:11 +01:00
parent d8f9cd6d5b
commit 9c5e85fe9a
2 changed files with 4 additions and 3 deletions

View File

@@ -151,7 +151,8 @@ function labellist_callback() {
var id = elems[i].id.replace("LILT-", "");
new Ajax.InPlaceEditor(elems[i],
'backend.php?op=pref-labels&subop=save&id=' + id);
'backend.php?op=pref-labels&subop=save&id=' + id,
{cols: 20, rows: 1});
}
}
}