DocumentServer/OfficeWeb/vendor/requirejs/tests/urlfetch/three.js

11 lines
159 B
JavaScript
Raw Normal View History

2015-04-28 14:59:00 +00:00
define("three", {
name: "three"
});
define("four", ["three"], function (three) {
return {
name: "four",
threeName: "three"
};
});