mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-12-03 04:17:12 -05:00
baa916e37a
* Update i18n * Change pt-BR description * Remove dead code from HomeView
21 lines
626 B
Text
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
|