8bbc063076
Change-Id: Ie057e46b9f9187d56f451d89abb8d520d591bfba Signed-off-by: Michael Meeks <michael.meeks@collabora.com>
25 lines
622 B
JavaScript
25 lines
622 B
JavaScript
/* -*- js-indent-level: 8 -*- */
|
|
/*
|
|
* 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/.
|
|
*/
|
|
// CSS requires
|
|
|
|
var $ = require('jquery');
|
|
global.$ = global.jQuery = $;
|
|
|
|
require('l10n-for-node');
|
|
|
|
global._ = function (string) {
|
|
return string.toLocaleString();
|
|
};
|
|
|
|
global.l10nstrings = require('./admin.strings.js');
|
|
|
|
global.d3 = require('d3');
|
|
global.Admin = require('admin-src.js');
|