Cleaning and remove useless files
This commit is contained in:
2
controllers/prototype/index.js
vendored
2
controllers/prototype/index.js
vendored
@@ -171,5 +171,5 @@ module.exports.userstudy = function(req, res) {
|
||||
};
|
||||
|
||||
module.exports.next = function(req, res) {
|
||||
res.redirect('/prototype/game')
|
||||
res.redirect('/prototype/game');
|
||||
};
|
||||
|
||||
@@ -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.
|
||||
@@ -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.
|
||||
@@ -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'})
|
||||
|
||||
@@ -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).
|
||||
Reference in New Issue
Block a user