web-apps/vendor/requirejs/tests/onResourceLoad/a.js

14 lines
270 B
JavaScript
Raw Normal View History

2016-03-11 00:48:53 +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);
}
});
});