mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-05-17 01:15:24 +00:00
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
This commit is contained in:
@@ -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>');
|
||||
|
||||
Reference in New Issue
Block a user