2018-07-24 07:53:26 -05:00
|
|
|
/* -*- js-indent-level: 8 -*- */
|
2024-01-12 13:34:26 -06:00
|
|
|
/*
|
|
|
|
* Copyright the Collabora Online contributors.
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
|
|
*
|
|
|
|
* 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/.
|
|
|
|
*/
|
2016-08-09 09:26:05 -05:00
|
|
|
// CSS requires
|
|
|
|
|
|
|
|
var $ = require('jquery');
|
|
|
|
global.$ = global.jQuery = $;
|
|
|
|
|
|
|
|
require('l10n-for-node');
|
|
|
|
|
|
|
|
global._ = function (string) {
|
|
|
|
return string.toLocaleString();
|
|
|
|
};
|
|
|
|
|
|
|
|
global.l10nstrings = require('./admin.strings.js');
|
|
|
|
|
2016-08-09 09:43:00 -05:00
|
|
|
global.d3 = require('d3');
|
2023-03-31 07:49:07 -05:00
|
|
|
global.Admin = require('admin-src.js');
|