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.
|
result = ""; |
|
|
|
(function() { |
|
CallMe = function(callback) { |
|
callback(); |
|
}; |
|
|
|
var say_hello_twice = function() { |
|
say_hello(); |
|
|
|
CallMe(function(){ |
|
say_hello(); |
|
}); |
|
}; |
|
|
|
var say_hello = function() { |
|
result += 'hello world'; |
|
}; |
|
|
|
say_hello_twice(); |
|
})();
|
|
|