- Author:
- David Nickerson <nickerso@users.sourceforge.net>
- Date:
- 2009-07-16 02:00:03+12:00
- Desc:
- the starting point for the HH tutorial example
- Permanent Source URI:
- https://models.fieldml.org/workspace/a1/rawfile/f6a8f90307388eb4b040ee3566b84d88b59247f7/dojo-presentation/js/dojo/dojox/analytics/plugins/dojo.js
dojo.provide("dojox.analytics.plugins.dojo");
dojox.analytics.plugins.dojo = new (function(){
// summary:
// plugin to have analyitcs return the base info dojo collects
this.addData = dojo.hitch(dojox.analytics, "addData", "dojo");
dojo.addOnLoad(dojo.hitch(this, function(){
var data = {};
for(var i in dojo){
if ((i=="version") || ((!dojo.isObject(dojo[i]))&&(i[0]!="_"))){
data[i]=dojo[i];
}
}
if (dojo.config){data.djConfig=dojo.config}
this.addData(data);
}));
})();