26 lines
488 B
JavaScript
26 lines
488 B
JavaScript
require.config({
|
|
baseUrl: requirejs.isBrowser ? './' : './plugins/fromTextEvalError',
|
|
paths: {
|
|
'refine': '../fromText/refine',
|
|
'text': '../../../../text/text'
|
|
},
|
|
map: {
|
|
'*': {
|
|
r: 'refine'
|
|
}
|
|
}
|
|
});
|
|
|
|
require(['delegated!r!a'], function (a) {
|
|
|
|
doh.register(
|
|
'pluginsDelegated',
|
|
[
|
|
function pluginsDelegated(t){
|
|
t.is('a', a.name);
|
|
}
|
|
]
|
|
);
|
|
doh.run();
|
|
});
|