Cleaning and remove useless files

This commit is contained in:
Thomas FORGIONE
2015-09-01 09:51:57 +02:00
parent 8ac5391ce3
commit fc3aa07038
9 changed files with 19 additions and 117 deletions

View File

@@ -171,5 +171,5 @@ module.exports.userstudy = function(req, res) {
};
module.exports.next = function(req, res) {
res.redirect('/prototype/game')
res.redirect('/prototype/game');
};

View File

@@ -1,26 +0,0 @@
extends ./prototype_interactive
block title
title #{title} - Prototype - Arrows
block configjs
script Recommendation = L3D.ArrowRecommendation;
script.
Coin.onLastCoin = function() {
$('#next').show();
$('#next').click(function() {
window.location = '/prototype/arrows';
$('#next').click(function() {});
});
};
block lastbutton
button#next.btn.btn-success.navbar-btn(style={'margin-right':'10px', 'margin-bottom':'10px', 'display':'none'})
span Go to the next step
//-block preciseDescription
p
| Recommended views are displayed with a
| transparent blue arrow. They disappear when you
| come closer to them, and shows the motion between
| your current position and the recommendation.

View File

@@ -1,25 +0,0 @@
extends ./prototype_interactive
block title
title #{title} - Prototype - Arrows
block configjs
script Recommendation = L3D.EmptyRecommendation;
script.
Coin.onLastCoin = function() {
$('#next').show();
$('#next').click(function() {
window.location = '/prototype/arrows';
});
};
block lastbutton
button#next.btn.btn-success.navbar-btn(style={'margin-right':'10px', 'margin-bottom':'10px', 'display':'none'})
span Go to the next step
//-block preciseDescription
p
| Recommended views are displayed with a
| transparent blue arrow. They disappear when you
| come closer to them, and shows the motion between
| your current position and the recommendation.

View File

@@ -5,14 +5,6 @@ block title
block configjs
script Recommendation = #{recommendationStyle}; coinsId = [#{coins}];
script.
Coin.onLastCoin = function() {
$('#next').show();
$('#next').click(function() {
window.location = '/prototype/game';
$('#next').prop('disabled', true);
});
};
block lastbutton
button#next.btn.btn-success.navbar-btn(style={'margin-right':'10px', 'margin-bottom':'10px', 'display':'none'})

View File

@@ -1,28 +0,0 @@
extends ./prototype_interactive
block title
title #{title} - Prototype - Viewports
block configjs
script Recommendation = L3D.ViewportRecommendation;
script.
Coin.onLastCoin = function() {
$('#next').show();
$('#next').click(function() {
window.location = '/prototype/arrows';
$('#next').click(function() {});
});
};
block lastbutton
button#next.btn.btn-success.navbar-btn(style={'margin-right':'10px', 'margin-bottom':'10px', 'display':'none'})
span Go to the next step
//-block preciseDescription
p
| Recommended views are displayed with a
| transparent red rectangle and some lines.
| Basically, it represents the position of a camera
| (the point at the extramities of the lines
| represents the optical center, and the red
| rectangle represents the image plane).