Skip to content

Commit

Permalink
Salida web para #23
Browse files Browse the repository at this point in the history
  • Loading branch information
diegoefe committed Nov 7, 2016
1 parent d3e0a54 commit e9094e1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
5 changes: 2 additions & 3 deletions src/txt-to-sql.jade
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,6 @@ html(lang=lang)
cn:'NotaciónCientífica'
},
step3:'Paso 3: ',
step4:'Estadísticas: ',
download:'descargar',
},
en:{
Expand Down Expand Up @@ -128,7 +127,6 @@ html(lang=lang)
cn:'CientificNotation'
},
step3:'Step 3: ',
step4:'Statistics: ',
download:'download',
}
}[window.lang||'es'];
Expand Down Expand Up @@ -256,8 +254,9 @@ html(lang=lang)
if(generated.warnings) {
elems.push(html.span(' warning(s): '+generated.warnings.join(', ')).create())
}
elems.push(html.label(' ('+stringizeStats(generated.stats)+')').create());
addStep(messages.step3, elems);
addStep(messages.step4, stringizeStats(generated.stats));

}).catch(function(err){
errMessage.textContent=err.message;
});
Expand Down
5 changes: 2 additions & 3 deletions web/txt-to-sql.html
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@
cn:'NotaciónCientífica'
},
step3:'Paso 3: ',
step4:'Estadísticas: ',
download:'descargar',
},
en:{
Expand Down Expand Up @@ -73,7 +72,6 @@
cn:'CientificNotation'
},
step3:'Step 3: ',
step4:'Statistics: ',
download:'download',
}
}[window.lang||'es'];
Expand Down Expand Up @@ -201,8 +199,9 @@
if(generated.warnings) {
elems.push(html.span(' warning(s): '+generated.warnings.join(', ')).create())
}
elems.push(html.label(' ('+stringizeStats(generated.stats)+')').create());
addStep(messages.step3, elems);
addStep(messages.step4, stringizeStats(generated.stats));

}).catch(function(err){
errMessage.textContent=err.message;
});
Expand Down

0 comments on commit e9094e1

Please sign in to comment.