mirror of
https://github.com/ONLYOFFICE/web-apps.git
synced 2026-07-25 01:31:33 +08:00
11 lines
233 B
JavaScript
11 lines
233 B
JavaScript
define(function() {
|
|
return {
|
|
load: function(name, parentRequire, onload, config) {
|
|
onload(name);
|
|
},
|
|
normalize: function(name, normalize) {
|
|
return name + '.xyz';
|
|
}
|
|
}
|
|
});
|