##// END OF EJS Templates
working on IoC container
working on IoC container

File last commit:

r0:6a5387d69bf1 default
r38:d3813a6cdb36 di-typescript
Show More
_load.js
11 lines | 243 B | application/javascript | JavascriptLexer
define([], function () {
'use strict';
return {
load: function (id, require, callback) {
require(['dojo/_base/declare'], function (declare) {
callback(declare);
});
}
};
});