mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 22:55:23 +00:00
58ba64420a
http://bugzilla.mozilla.org/attachment.cgi?id=134967&action=view for bug 219589: Calendar Extension for Thunderbird ( Note: shortened a few filenames )
29 lines
947 B
JavaScript
29 lines
947 B
JavaScript
/*
|
|
* ***** BEGIN LICENSE BLOCK *****
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
* for the specific language governing rights and limitations under the
|
|
* License.
|
|
*
|
|
* The Original Code is Mozilla Calendar Code.
|
|
*
|
|
* The Initial Developer of the Original Code is
|
|
* Mozilla.org.
|
|
* Portions created by the Initial Developer are Copyright (C) 1999-2002
|
|
* the Initial Developer. All Rights Reserved.
|
|
*
|
|
* Contributor(s): Eric Belhaire (belhaire@ief.u-psud.fr)
|
|
*
|
|
* ***** END LICENSE BLOCK *****
|
|
*/
|
|
|
|
|
|
//Used by Mozilla Firebird
|
|
function openCalendarInFirebird()
|
|
{
|
|
//window.openDialog("chrome://calendar/content", "_blank", "chrome,all,dialog=no");
|
|
calendarWindow = window.open("chrome://calendar/content/calendar.xul", "calendar", "chrome,extrachrome,menubar,resizable,scrollbars,status,toolbar");
|
|
//openCalendar();
|
|
}
|
|
|