Fixing bug 135171, snoozing alarms problem.

git-svn-id: svn://10.0.0.236/trunk@118018 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
mikep%oeone.com
2002-04-03 18:55:36 +00:00
parent 334afd0307
commit 29ef230c2e
2 changed files with 10 additions and 4 deletions

View File

@@ -55,9 +55,8 @@ function onLoad()
for( var i in window.pendingEvents )
{
gAllEvents[ gAllEvents.length ] = window.pendingEvents[i];
//createAlarmBox( window.pendingEvents[ i ] );
}
buildEventBoxes();
}
@@ -289,6 +288,10 @@ function snoozeAlarm( Event )
gICalLib.modifyEvent( Event );
var Id = getArrayId( Event )
gAllEvents.splice( Id, 1 );
buildEventBoxes();
}

View File

@@ -55,9 +55,8 @@ function onLoad()
for( var i in window.pendingEvents )
{
gAllEvents[ gAllEvents.length ] = window.pendingEvents[i];
//createAlarmBox( window.pendingEvents[ i ] );
}
buildEventBoxes();
}
@@ -289,6 +288,10 @@ function snoozeAlarm( Event )
gICalLib.modifyEvent( Event );
var Id = getArrayId( Event )
gAllEvents.splice( Id, 1 );
buildEventBoxes();
}