sample skeleton application with dojo toolkit & arcgis js api v 4.30
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

41 lines
737 B

dojo.provide("dojox.lang.async.event");
// Source of Deferred for events
(function(){
var d = dojo, event = dojox.lang.async.event;
event.from = function(src, name){
return function(){
var h, cancel = function(){
if(h){
d.disconnect(h);
h = null;
}
},
x = new d.Deferred(cancel);
h = d.connect(src, name, function(evt){
cancel();
x.callback(evt);
});
return x;
};
};
event.failOn = function(src, name){
return function(){
var h, cancel = function(){
if(h){
d.disconnect(h);
h = null;
}
},
x = new d.Deferred(cancel);
h = d.connect(src, name, function(evt){
cancel();
x.errback(new Error(evt));
});
return x;
};
};
})();