DocumentServer/OfficeWeb/vendor/requirejs/tests/onResourceLoad/a.js

14 lines
270 B
JavaScript
Raw Normal View History

2015-04-28 14:59:00 +00:00
define(function (require) {
//Important, notice the space between require and arg calls
var b = require ('b');
return (a = {
name: 'a',
b: b,
ids: [],
add: function (id) {
this.ids.push(id);
}
});
});