annotate core/src/js/declare/_load.js @ 30:2dfba21cd879

sync
author cin
date Wed, 27 Jun 2018 02:46:14 +0300
parents acdcdf1a8d21
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
fc2517695ee1 Initial commit, draft import of existing work
cin
parents:
diff changeset
1 define([], function () {
fc2517695ee1 Initial commit, draft import of existing work
cin
parents:
diff changeset
2 'use strict';
fc2517695ee1 Initial commit, draft import of existing work
cin
parents:
diff changeset
3
fc2517695ee1 Initial commit, draft import of existing work
cin
parents:
diff changeset
4 return {
fc2517695ee1 Initial commit, draft import of existing work
cin
parents:
diff changeset
5 load: function (id, require, callback) {
fc2517695ee1 Initial commit, draft import of existing work
cin
parents:
diff changeset
6 require(['dojo/_base/declare'], function (declare) {
fc2517695ee1 Initial commit, draft import of existing work
cin
parents:
diff changeset
7 callback(declare);
fc2517695ee1 Initial commit, draft import of existing work
cin
parents:
diff changeset
8 });
fc2517695ee1 Initial commit, draft import of existing work
cin
parents:
diff changeset
9 }
fc2517695ee1 Initial commit, draft import of existing work
cin
parents:
diff changeset
10 };
fc2517695ee1 Initial commit, draft import of existing work
cin
parents:
diff changeset
11
fc2517695ee1 Initial commit, draft import of existing work
cin
parents:
diff changeset
12 });