8398c9048d
code was modified slightly, so the code differs from the original downloadable 1.9.5 version
18 lines
365 B
JavaScript
18 lines
365 B
JavaScript
dojo.provide("dijit.robotx");
|
|
dojo.require("dijit.robot");
|
|
dojo.require("dojo.robotx");
|
|
dojo.experimental("dijit.robotx");
|
|
(function(){
|
|
var __updateDocument = doh.robot._updateDocument;
|
|
|
|
dojo.mixin(doh.robot,{
|
|
_updateDocument: function(){
|
|
__updateDocument();
|
|
var win = dojo.global;
|
|
if(win["dijit"]){
|
|
dijit.registry = win.dijit.registry;
|
|
}
|
|
}
|
|
});
|
|
|
|
})();
|