mirror of
https://github.com/cryptpad/cryptpad.git
synced 2026-09-12 19:49:59 +05:00
17 lines
434 B
JavaScript
17 lines
434 B
JavaScript
// SPDX-FileCopyrightText: 2023 XWiki CryptPad Team <contact@cryptpad.org> and contributors
|
|
//
|
|
// SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
define([
|
|
'/common/LessLoader.js'
|
|
], function (LessLoader) {
|
|
var api = {};
|
|
api.normalize = function(name, normalize) {
|
|
return normalize(name);
|
|
};
|
|
api.load = function(cssId, req, load /*, config */) {
|
|
LessLoader.load(cssId, load);
|
|
};
|
|
return api;
|
|
});
|