web-apps/vendor/requirejs/tests/onResourceLoad/a.js
Maxim Kadushkin 741b10515d webapps added
2016-03-10 21:48:53 -03:00

14 lines
270 B
JavaScript

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);
}
});
});