source: Dev/branches/rest-dojo-ui/client/dojo/_base/browser.js @ 256

Last change on this file since 256 was 256, checked in by hendrikvanantwerpen, 13 years ago

Reworked project structure based on REST interaction and Dojo library. As
soon as this is stable, the old jQueryUI branch can be removed (it's
kept for reference).

File size: 442 bytes
Line 
1if(require.has){
2        require.has.add("config-selectorEngine", "acme");
3}
4define([
5        "../ready",
6        "./kernel",
7        "./connect", // until we decide if connect is going back into non-browser environments
8        "./unload",
9        "./window",
10        "./event",
11        "./html",
12        "./NodeList",
13        "../query",
14        "./xhr",
15        "./fx"], function(dojo) {
16        // module:
17        //              dojo/_base/browser
18        // summary:
19        //              This module causes the browser-only base modules to be loaded.
20        return dojo;
21});
Note: See TracBrowser for help on using the repository browser.