Changeset 13694
- Timestamp:
- 05/12/08 05:14:13 (6 months ago)
- Location:
- dojox/trunk/image/tests
- Files:
-
- 5 modified
-
test_Gallery.html (modified) (1 diff)
-
test_Gallery_GoogleData.html (modified) (1 diff)
-
test_Lightbox.html (modified) (1 diff)
-
test_SlideShow.html (modified) (2 diffs)
-
test_ThumbnailPicker.html (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
dojox/trunk/image/tests/test_Gallery.html
r13665 r13694 50 50 count: 20 51 51 }; 52 dijit.byId('gallery1').setDataStore(flickrRestStore, req); 52 setTimeout(function(){ 53 dijit.byId('gallery1').setDataStore(flickrRestStore, req); 54 },250); 53 55 /* 54 56 dijit.byId('gallery2').setDataStore(imageItemStore,{ count:20 },{ -
dojox/trunk/image/tests/test_Gallery_GoogleData.html
r13665 r13694 38 38 count: 32 39 39 }; 40 dijit.byId('gallery1').setDataStore(googleImageStore, req); 40 // testCommon defers parsing by a little, so dijit's aren't ready 41 // in addOnLoad for soria/nihilo :( 42 setTimeout(function(){ 43 dijit.byId('gallery1').setDataStore(googleImageStore, req); 44 },250); 45 41 46 }); 42 47 </script> -
dojox/trunk/image/tests/test_Lightbox.html
r13665 r13694 51 51 52 52 function init(){ 53 54 55 53 var flickrRequest = { 56 54 query: {}, -
dojox/trunk/image/tests/test_SlideShow.html
r13665 r13694 14 14 15 15 <!-- required: dojo.js --> 16 <script type="text/javascript" src="../../../dojo/dojo.js" djConfig="isDebug:true, parseOnLoad: true"></script>16 <script type="text/javascript" src="../../../dojo/dojo.js" djConfig="isDebug:true, parseOnLoad: false"></script> 17 17 18 18 <!-- do not use! only for testing dynamic themes --> … … 32 32 dojo.addOnLoad(function(){ 33 33 //Initialize the first SlideShow with an ItemFileReadStore 34 dojo.parser.parse( dojo.body());34 dojo.parser.parse(); 35 35 dijit.byId('slideshow1').setDataStore(imageItemStore, 36 36 { query: {}, count:20 }, -
dojox/trunk/image/tests/test_ThumbnailPicker.html
r13665 r13694 14 14 15 15 <!-- required: dojo.js --> 16 <script type="text/javascript" src="../../../dojo/dojo.js" djConfig="isDebug:true, parseOnLoad: true"></script>16 <script type="text/javascript" src="../../../dojo/dojo.js" djConfig="isDebug:true, parseOnLoad: false"></script> 17 17 18 18 <!-- do not use! only for testing dynamic themes --> … … 26 26 dojo.require("dojox.data.FlickrRestStore"); 27 27 dojo.require("dojo.data.ItemFileReadStore"); 28 dojo.require("dojo.parser"); 28 29 29 30 /* … … 96 97 } 97 98 98 dojo.addOnLoad(initFlickrGallery); 99 dojo.addOnLoad(initItemStoreGallery); 100 dojo.addOnLoad(doSubscribe); 99 dojo.addOnLoad(function(){ 100 dojo.parser.parse(); 101 initFlickrGallery(); 102 initItemStoreGallery(); 103 doSubscribe(); 104 }); 105 101 106 </script> 102 107 </head>