source: Dev/branches/rest-dojo-ui/client/util/shrinksafe/tests/5303.js @ 256

Last change on this file since 256 was 256, checked in by hendrikvanantwerpen, 13 years ago

Reworked project structure based on REST interaction and Dojo library. As
soon as this is stable, the old jQueryUI branch can be removed (it's
kept for reference).

File size: 326 bytes
Line 
1result = "";
2
3(function() {
4    CallMe = function(callback) {
5        callback();
6    };
7
8    var say_hello_twice = function() {
9        say_hello();
10
11        CallMe(function(){
12            say_hello();
13        });
14    };
15
16    var say_hello = function() {
17        result += 'hello world';
18    };
19
20    say_hello_twice();
21})();
Note: See TracBrowser for help on using the repository browser.