From 660f39a980513bf9bcff14bdc8d74dd092c50717 Mon Sep 17 00:00:00 2001 From: Alexandre Cloutier Date: Mon, 30 Jun 2014 14:13:52 -0400 Subject: [PATCH] delete notice and put grey background for multi-columns view --- UI/Scheduler/English.lproj/Localizable.strings | 4 ---- UI/WebServerResources/SchedulerUI.js | 4 ++-- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/UI/Scheduler/English.lproj/Localizable.strings b/UI/Scheduler/English.lproj/Localizable.strings index d884803b3..ecb4a9135 100644 --- a/UI/Scheduler/English.lproj/Localizable.strings +++ b/UI/Scheduler/English.lproj/Localizable.strings @@ -545,10 +545,6 @@ vtodo_class2 = "(Confidential task)"; "DestinationCalendarError" = "The source and destination calendars are the same. Please try to copy to a different calendar."; "EventCopyError" = "The copy failed. Please try to copy to a difference calendar."; "Please select at least one calendar" = "Please select at least one calendar"; -"notice:" = "notice:"; -"error:" = "error:"; -"success:" = "success:"; -"warning:" = "warning:"; "Open Task..." = "Open Task..."; diff --git a/UI/WebServerResources/SchedulerUI.js b/UI/WebServerResources/SchedulerUI.js index da44ad6d5..58b7df137 100644 --- a/UI/WebServerResources/SchedulerUI.js +++ b/UI/WebServerResources/SchedulerUI.js @@ -2184,8 +2184,8 @@ function adjustMultiColumnCalendarHeaderDIV() { else { $("calendarHeader").remove(); $("daysView").remove(); - var htmlText = "
" + _("notice:") + ""+_("Please go ahead and select calendars")+"
"; - $("calendarContent").innerHTML = htmlText; + $("calendarContent").style.height = "100%"; + $("calendarContent").style.background = "#E7E7E7"; } }