Fixed confirmation dialog box when deleting too many events (bug #1297).

Monotone-Parent: 9460deffbf939afae0a607ea07e015924c93fd01
Monotone-Revision: 6c7df05d6446c77649d60795ea43d844c59e9838

Monotone-Author: flachapelle@inverse.ca
Monotone-Date: 2011-12-12T17:01:10
maint-2.0.2
Francis Lachapelle 2011-12-12 17:01:10 +00:00
parent 5564a8a84b
commit 68fff252ba
3 changed files with 7 additions and 2 deletions

1
NEWS
View File

@ -14,6 +14,7 @@ Enhancements
Bug Fixes
- fixed encoding of headers in sogo-ealarm-notify
- fixed confirmation dialog box when deleting too many events
1.3-20111130 (1.3.10)
---------------------

View File

@ -255,7 +255,7 @@ function deleteEvent() {
eventsToDelete.push(sortedNodes[calendars[i]]);
}
if (i > 0) {
var p = createElement("p");
var p = createElement("p", null, ["list"]);
var str = "";
if (Prototype.Browser.IE)
str = label.formatted('<br><br> - <b>' + events.join('</b><br> - <b>') + '</b><br><br>');
@ -313,7 +313,7 @@ function deleteEvent() {
eventsToDelete.push(sortedNodes[calendars[i]]);
}
if (i > 0) {
var p = createElement("p");
var p = createElement("p", null, ["list"]);
var label = _("eventDeleteConfirmation");
if (Prototype.Browser.IE)
label = label.formatted('<br><br> - <b>' + events.join('</b><br> - <b>') + '</b><br><br>');

View File

@ -619,6 +619,10 @@ DIV.dialog.none P
DIV.dialog.none P.prompt
{ text-align: right; }
DIV.dialog P.list
{ max-height: 200px;
overflow-y: auto; }
DIV#bgFrameDiv
{ position: absolute;
top: 0px; left: 0px;