less action-less steps in walkthrough

This commit is contained in:
Ansis Brammanis
2013-03-28 12:13:59 -04:00
parent 56cfcd7a3f
commit 849eadca23
3 changed files with 9 additions and 6 deletions
+1 -1
View File
@@ -4,7 +4,7 @@ en:
drag: "The main map area shows OpenStreetMap data on top of a background. You can navigate by dragging and scrolling, just like any web map. **Drag the map!**"
select: "Map features are represented three ways: using points, lines or areas. All features can be selected by clicking on them. **Click on the point to select it.**"
header: "The header shows us the feature type."
pane: "The main pane shows the feature's attributes, such as its name and address."
pane: "When a feature is selected, the feature editor is displayed. The header shows us the feature type and the main pane shows the feature's attributes, such as its name and address. **Close the feature editor with the close button in the top right.**"
points:
add: "Points can be used to represent features such as shops, restaurants and monuments. They mark a specific location, and describe what's there. **Click the Point button to add a new point.**"
place: "Click to place the point on the map. The point we are adding is a Cafe. **Place the point at the corner of This Street and That Street**"
+3 -2
View File
@@ -1461,7 +1461,7 @@ locale.en = {
"drag": "The main map area shows OpenStreetMap data on top of a background. You can navigate by dragging and scrolling, just like any web map. **Drag the map!**",
"select": "Map features are represented three ways: using points, lines or areas. All features can be selected by clicking on them. **Click on the point to select it.**",
"header": "The header shows us the feature type.",
"pane": "The main pane shows the feature's attributes, such as its name and address."
"pane": "When a feature is selected, the feature editor is displayed. The header shows us the feature type and the main pane shows the feature's attributes, such as its name and address. **Close the feature editor with the close button in the top right.**"
},
"points": {
"add": "Points can be used to represent features such as shops, restaurants and monuments. They mark a specific location, and describe what's there. **Click the Point button to add a new point.**",
@@ -1490,7 +1490,8 @@ locale.en = {
"finish": "Lines can be finished by clicking on the last point again. **Finish drawing the road.**",
"road": "**Select Road from the grid**",
"residential": "There are different types of roads, the most common of which is Residential. **Choose the Residential road type**",
"describe": "**Name the road and close the feature editor.**"
"describe": "**Name the road and close the feature editor.**",
"restart": "The road needs to intersect Flower Street."
},
"startediting": {
"help": "More documentation and this walkthrough are available here.",
+5 -3
View File
@@ -62,9 +62,10 @@ iD.ui.intro.navigation = function(context, reveal) {
if (mode.id !== 'select') return;
context.on('enter.intro', null);
context.map().on('move.intro', null);
set(function() { reveal('.header', 'intro.navigation.header'); }, 700);
set(function() { reveal('.tag-wrap', 'intro.navigation.pane'); }, 4000);
set(event.done, 7000);
set(function() {
reveal('.tag-pane', 'intro.navigation.pane');
context.on('exit.intro', event.done);
}, 700);
}
};
@@ -72,6 +73,7 @@ iD.ui.intro.navigation = function(context, reveal) {
step.exit = function() {
context.map().on('move.intro', null);
context.on('enter.intro', null);
context.on('exit.intro', null);
timeouts.forEach(window.clearTimeout);
};