mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-05-17 09:25:25 +00:00
Monotone-Parent: c7c2186348790bb64c08730ba255f908ac68cfa9
Monotone-Revision: c646d0cb24c5b2d251fb7736020445cd76631da3 Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2007-11-21T17:23:51 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
@@ -660,7 +660,8 @@ function refreshCalendarEvents(scrollEvent) {
|
||||
var url = ApplicationBaseURL + "eventslist?sd=" + sd + "&ed=" + ed;
|
||||
document.refreshCalendarEventsAjaxRequest
|
||||
= triggerAjaxRequest(url, refreshCalendarEventsCallback,
|
||||
{"startDate": sd, "endDate": ed, "scrollEvent": scrollEvent});
|
||||
{"startDate": sd, "endDate": ed,
|
||||
"scrollEvent": scrollEvent});
|
||||
}
|
||||
|
||||
function refreshCalendarEventsCallback(http) {
|
||||
@@ -1005,11 +1006,23 @@ function onHeaderClick(event) {
|
||||
preventDefault(event);
|
||||
}
|
||||
|
||||
function refreshCurrentFolder() {
|
||||
refreshEvents();
|
||||
}
|
||||
|
||||
function refreshEvents() {
|
||||
return _loadEventHref("eventslist?desc=" + sortOrder
|
||||
+ "&sort=" + sortKey
|
||||
+ "&day=" + currentDay
|
||||
+ "&filterpopup=" + listFilter);
|
||||
var titleSearch;
|
||||
var value = search["value"];
|
||||
if (value && value.length)
|
||||
titleSearch = "&search=" + value;
|
||||
else
|
||||
titleSearch = "";
|
||||
|
||||
return _loadEventHref("eventslist?desc=" + sortOrder
|
||||
+ "&sort=" + sortKey
|
||||
+ "&day=" + currentDay
|
||||
+ titleSearch
|
||||
+ "&filterpopup=" + listFilter);
|
||||
}
|
||||
|
||||
function refreshTasks() {
|
||||
@@ -1097,12 +1110,6 @@ function onYearMenuItemClick(event) {
|
||||
changeDateSelectorDisplay(year + month + "01", true);
|
||||
}
|
||||
|
||||
function onSearchFormSubmit() {
|
||||
log ("search not implemented");
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
function selectCalendarEvent(div) {
|
||||
// Select event in calendar view
|
||||
if (selectedCalendarCell)
|
||||
|
||||
Reference in New Issue
Block a user