mirror of
https://github.com/ONLYOFFICE/web-apps.git
synced 2026-07-24 08:55:16 +08:00
11 lines
172 B
JavaScript
11 lines
172 B
JavaScript
define(['exported'], function (exported) {
|
|
function func(title) {
|
|
return exported.makeMessage(title);
|
|
}
|
|
|
|
func.suffix = 'suffix';
|
|
|
|
return func;
|
|
});
|
|
|