source: Dev/branches/rest-dojo-ui/client/util/shrinksafe/tests/1768.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: 234 bytes
Line 
1// testing a simple var list with embedded things.
2var result = 0;
3
4(function(){
5        var a = 2,
6                b = 3,
7                superLong = 4,
8                aFunction = function(arg){
9                        var inList = superLong;
10                        result = inList;
11                }
12        ;
13       
14        aFunction(superLong);
15       
16})();
Note: See TracBrowser for help on using the repository browser.