JSHint cleaning
This commit is contained in:
		
							parent
							
								
									5c82adbff4
								
							
						
					
					
						commit
						688223eb58
					
				
							
								
								
									
										2
									
								
								controllers/prototype/dbrequests.js
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										2
									
								
								controllers/prototype/dbrequests.js
									
									
									
									
										vendored
									
									
								
							| @ -1616,6 +1616,6 @@ DBReq.verifyUser = function() { construct(DBReq.UserVerifier, arguments); }; | |||||||
|  * </ol> |  * </ol> | ||||||
|  * @memberof DBReq |  * @memberof DBReq | ||||||
|  */ |  */ | ||||||
| DBReq.getUser = function() { construct(DBReq.UserGetter, arguments); } | DBReq.getUser = function() { construct(DBReq.UserGetter, arguments); }; | ||||||
| 
 | 
 | ||||||
| module.exports = DBReq; | module.exports = DBReq; | ||||||
|  | |||||||
							
								
								
									
										4
									
								
								js/l3d/apps/prototype/interactive/main.js
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										4
									
								
								js/l3d/apps/prototype/interactive/main.js
									
									
									
									
										vendored
									
									
								
							| @ -5,7 +5,7 @@ var onWindowResize = (function() { | |||||||
| 
 | 
 | ||||||
| L3D.ProgressiveLoader.onFinished = function() { | L3D.ProgressiveLoader.onFinished = function() { | ||||||
| 
 | 
 | ||||||
|     if (coins.length === 0 || coins[0].mesh == undefined) { |     if (coins.length === 0 || coins[0].mesh === undefined) { | ||||||
|         setTimeout(L3D.ProgressiveLoader.onFinished, 500); |         setTimeout(L3D.ProgressiveLoader.onFinished, 500); | ||||||
|         return; |         return; | ||||||
|     } |     } | ||||||
| @ -17,7 +17,7 @@ L3D.ProgressiveLoader.onFinished = function() { | |||||||
|     loadingCanvas.clear(); |     loadingCanvas.clear(); | ||||||
|     L3D.DB.enable(); |     L3D.DB.enable(); | ||||||
|     camera1.reset(); |     camera1.reset(); | ||||||
| } | }; | ||||||
| 
 | 
 | ||||||
| // Disable scrolling
 | // Disable scrolling
 | ||||||
| window.onscroll = function () { window.scrollTo(0, 0); }; | window.onscroll = function () { window.scrollTo(0, 0); }; | ||||||
|  | |||||||
							
								
								
									
										2
									
								
								js/l3d/apps/prototype/tutorial/main.js
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										2
									
								
								js/l3d/apps/prototype/tutorial/main.js
									
									
									
									
										vendored
									
									
								
							| @ -36,7 +36,7 @@ window.onbeforeunload = function() { | |||||||
| 
 | 
 | ||||||
|     } |     } | ||||||
| 
 | 
 | ||||||
| } | }; | ||||||
| 
 | 
 | ||||||
| function main() { | function main() { | ||||||
| 
 | 
 | ||||||
|  | |||||||
| @ -6,4 +6,4 @@ module.exports = function(workerId) { | |||||||
| 
 | 
 | ||||||
|     return 'mw-' + hash(campaignId + workerId + secretKey); |     return 'mw-' + hash(campaignId + workerId + secretKey); | ||||||
| 
 | 
 | ||||||
| } | }; | ||||||
|  | |||||||
| @ -1,5 +1,5 @@ | |||||||
| // var baseUrl = 'http://localhost:4000/';
 | var baseUrl = 'http://localhost:4000/'; | ||||||
| var baseUrl = 'http://3dinterface.no-ip.org/'; | // var baseUrl = 'http://3dinterface.no-ip.org/';
 | ||||||
| 
 | 
 | ||||||
| function makeId() | function makeId() | ||||||
| { | { | ||||||
| @ -23,38 +23,39 @@ var limit = 1000; | |||||||
| 
 | 
 | ||||||
| casper.start(baseUrl); | casper.start(baseUrl); | ||||||
| 
 | 
 | ||||||
| for (var i = 0; i < limit; i++) { | function addLevel(i) { | ||||||
| 
 | 
 | ||||||
|     (function(i) { |     casper.thenOpen(baseUrl + 'user-study', function() { | ||||||
| 
 | 
 | ||||||
|         casper.thenOpen(baseUrl + 'user-study', function() { |         console.log(i); | ||||||
| 
 | 
 | ||||||
|             console.log(i); |         this.getHTML(); | ||||||
| 
 | 
 | ||||||
|             this.getHTML(); |         // this.waitForSelector('form#form', function() {
 | ||||||
| 
 | 
 | ||||||
|             // this.waitForSelector('form#form', function() {
 |         this.fillSelectors( | ||||||
| 
 |                 'form#form', { | ||||||
|                 this.fillSelectors( |                     '#inputId': makeId(), | ||||||
|                     'form#form', { |                     '#sel1': '-15', | ||||||
|                         '#inputId': makeId(), |                     '#sel2': '3' | ||||||
|                         '#sel1': '-15', |                 }, true | ||||||
|                         '#sel2': '3' |  | ||||||
|                     }, true |  | ||||||
|                 ); |                 ); | ||||||
| 
 | 
 | ||||||
|             // }, true);
 |         // }, true);
 | ||||||
| 
 | 
 | ||||||
|             this.thenOpen(baseUrl + 'prototype/tutorial'); |         this.thenOpen(baseUrl + 'prototype/tutorial'); | ||||||
|             this.thenOpen(baseUrl + 'prototype/play'); |         this.thenOpen(baseUrl + 'prototype/play'); | ||||||
|             this.thenOpen(baseUrl + 'prototype/play'); |         this.thenOpen(baseUrl + 'prototype/play'); | ||||||
|             this.thenOpen(baseUrl + 'prototype/play'); |         this.thenOpen(baseUrl + 'prototype/play'); | ||||||
| 
 | 
 | ||||||
|             this.thenOpen(baseUrl + 'logout'); |         this.thenOpen(baseUrl + 'logout'); | ||||||
| 
 | 
 | ||||||
|         }); |     }); | ||||||
|  | } | ||||||
| 
 | 
 | ||||||
|     })(i); | for (var i = 0; i < limit; i++) { | ||||||
|  | 
 | ||||||
|  |     addLevel(i); | ||||||
| 
 | 
 | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
|  | |||||||
| @ -1,5 +1,5 @@ | |||||||
| #!/usr/bin/bash | #!/usr/bin/bash | ||||||
| rm cookies* | rm -f cookies* | ||||||
| for i in `seq 1 8`; do | for i in `seq 1 8`; do | ||||||
|     casperjs load.js --cookies-file=cookies"$i".txt& |     casperjs load.js --cookies-file=cookies"$i".txt& | ||||||
| done | done | ||||||
|  | |||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user