Remove auto refresh options for 30 seconds and 1 minute, as apparently they cause problems with mail.

Add auto refresh options for 15 and 30 minutes.
This commit is contained in:
Nathan Gray 2014-10-08 17:27:39 +00:00
parent 5e9676e770
commit 2ca305b5cc

View File

@ -1251,9 +1251,12 @@ var et2_nextmatch = et2_DOMWidget.extend([et2_IResizeable, et2_IInput],
autoRefresh.set_id("nm_autorefresh");
autoRefresh.set_select_options({
0: "off",
30: "30 seconds",
60: "1 Minute",
300: "5 Minutes"
// Cause [unknown] problems with mail
//30: "30 seconds",
//60: "1 Minute",
300: "5 Minutes",
900: "15 Minutes",
1800: "30 Minutes"
});
autoRefresh.set_value(this._get_autorefresh());
autoRefresh.set_statustext(egw.lang("Automatically refresh list"));