JSHint cleaning

This commit is contained in:
Thomas FORGIONE 2015-10-06 16:58:04 +02:00
parent 5c82adbff4
commit 688223eb58
6 changed files with 30 additions and 29 deletions

View File

@ -1616,6 +1616,6 @@ DBReq.verifyUser = function() { construct(DBReq.UserVerifier, arguments); };
* </ol>
* @memberof DBReq
*/
DBReq.getUser = function() { construct(DBReq.UserGetter, arguments); }
DBReq.getUser = function() { construct(DBReq.UserGetter, arguments); };
module.exports = DBReq;

View File

@ -5,7 +5,7 @@ var onWindowResize = (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);
return;
}
@ -17,7 +17,7 @@ L3D.ProgressiveLoader.onFinished = function() {
loadingCanvas.clear();
L3D.DB.enable();
camera1.reset();
}
};
// Disable scrolling
window.onscroll = function () { window.scrollTo(0, 0); };

View File

@ -36,7 +36,7 @@ window.onbeforeunload = function() {
}
}
};
function main() {

View File

@ -6,4 +6,4 @@ module.exports = function(workerId) {
return 'mw-' + hash(campaignId + workerId + secretKey);
}
};

View File

@ -1,5 +1,5 @@
// var baseUrl = 'http://localhost:4000/';
var baseUrl = 'http://3dinterface.no-ip.org/';
var baseUrl = 'http://localhost:4000/';
// var baseUrl = 'http://3dinterface.no-ip.org/';
function makeId()
{
@ -23,38 +23,39 @@ var limit = 1000;
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', {
'#inputId': makeId(),
'#sel1': '-15',
'#sel2': '3'
}, true
this.fillSelectors(
'form#form', {
'#inputId': makeId(),
'#sel1': '-15',
'#sel2': '3'
}, true
);
// }, true);
// }, true);
this.thenOpen(baseUrl + 'prototype/tutorial');
this.thenOpen(baseUrl + 'prototype/play');
this.thenOpen(baseUrl + 'prototype/play');
this.thenOpen(baseUrl + 'prototype/play');
this.thenOpen(baseUrl + 'prototype/tutorial');
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);
}

View File

@ -1,5 +1,5 @@
#!/usr/bin/bash
rm cookies*
rm -f cookies*
for i in `seq 1 8`; do
casperjs load.js --cookies-file=cookies"$i".txt&
done