##// END OF EJS Templates
fixed object activation when a single argument passed to the constructor.
fixed object activation when a single argument passed to the constructor.

File last commit:

r0:6a5387d69bf1 default
r46:747292a4f3ac 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);
});
}
};
});