Files
calendar/components/import-export/calImportExportModule.js
T
2020-12-05 11:47:59 -05:00

32 lines
818 B
JavaScript

/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
Components.utils.import("resource://calendar/modules/calUtils.jsm");
var scriptLoadOrder = [
"calIcsImportExport.js",
"calHtmlExport.js",
"calOutlookCSVImportExport.js",
"calListFormatter.js",
"calMonthGridPrinter.js",
"calWeekPrinter.js"
];
function getComponents() {
return [
calIcsImporter,
calIcsExporter,
calHtmlExporter,
calOutlookCSVImporter,
calOutlookCSVExporter,
calListFormatter,
calMonthPrinter,
calWeekPrinter
];
}
this.NSGetFactory = cal.loadingNSGetFactory(scriptLoadOrder, getComponents, this);