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:29:40 +00:00
parent 2623a9410b
commit bf51e940b0

View File

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