mirror of
https://github.com/ONLYOFFICE/web-apps.git
synced 2026-07-24 18:59:34 +08:00
7 lines
151 B
JavaScript
7 lines
151 B
JavaScript
define({
|
|
load: function( name, req, onload, config ) {
|
|
requirejs.config({ baseUrl: './modules' });
|
|
req([name], onload);
|
|
}
|
|
});
|