automizy-email-editor
Version:
Design mobile friendly HTML emails in your application.
24 lines (22 loc) • 602 B
JavaScript
require({
bundles: {
'main': ['util', 'main'],
'second': ['other'],
'third': ['third']
}
}, ['util', 'other', 'third'], function (util, other, third) {
require(['main'], function (main) {
doh.register(
'bundles',
[
function bundles(t){
t.is('util', util.name);
t.is('other', other.name);
t.is('third', third.name);
t.is('main', main.name);
}
]
);
doh.run();
});
});