]> git.wh0rd.org - tt-rss.git/blob - lib/dijit/lib/main.js
remove call-by-reference to comply with php 5.4
[tt-rss.git] / lib / dijit / lib / main.js
1 /*
2 Copyright (c) 2004-2011, The Dojo Foundation All Rights Reserved.
3 Available via Academic Free License >= 2.1 OR the modified BSD license.
4 see: http://dojotoolkit.org/license for details
5 */
6
7
8 // AMD module id = dijit
9 //
10 // This is a package main module for the dijit package. The dijit package is somewhat unusual
11 // in that is it currently constructed to just provide an empty object.
12 //
13
14 // for now, we publish dijit into the global namespace because so many tests and apps expect it.
15 define(["dojo"], function(dojo) {
16 // the current dojo bootstrap defines dijit; this may change and this module provides a little
17 // future-proof with the disjunction.
18 dijit= dojo._dijit || {};
19 return dijit;
20 });