codecombat/app/templates/play/level/hints-view.jade
Imperadeiro98 baa916e37a Update i18n (#3907)
* Update i18n
* Change pt-BR description
* Remove dead code from HomeView
2016-09-08 22:48:28 +01:00

21 lines
626 B
Text

button.close-hint-btn.btn.btn-illustrated.btn-danger
span.glyphicon.glyphicon-remove
h1.text-center.hint-title
span= view.state.get('hintsTitle')
.hint-body
!= view.getProcessedHint()
.row.btn-area
.col-md-4
if view.state.get('hintIndex') > 0
button.previous-btn.btn.btn-illustrated.pull-left(data-i18n="about.previous")
.col-md-4
h2.text-center.hint-pagination #{view.state.get('hintIndex')+1} / #{view.hintsState.get('total')}
.col-md-4
if view.state.get('hintIndex') < view.hintsState.get('total') - 1
button.next-btn.btn.btn-illustrated.pull-right(data-i18n="play.next")
.clearfix