mirror of
https://github.com/ONLYOFFICE/web-apps.git
synced 2026-07-24 09:22:26 +08:00
12 lines
210 B
JavaScript
12 lines
210 B
JavaScript
define(['./a'], function (a) {
|
|
doh.register(
|
|
"dataMainPlugin",
|
|
[
|
|
function dataMainPlugin(t){
|
|
t.is("a", a.name);
|
|
}
|
|
]
|
|
);
|
|
doh.run();
|
|
});
|