DocumentServer/OfficeWeb/vendor/requirejs/tests/plugins/pluginBundles/main.js
2015-04-28 17:59:00 +03:00

17 lines
313 B
JavaScript

define('text', [], {
load: function () {
throw new Error('not implemented');
}
});
define('text!template.html', [], function () {
return 'main template';
});
define('main', ['text!template.html'], function(template) {
return {
name: 'main',
template: template
};
});