close explorer button when empty - closes #1672

anand
Thibault Duplessis 2016-03-04 12:59:36 +07:00
parent 48870d644d
commit c01bb875c4
2 changed files with 6 additions and 2 deletions

View File

@ -9,7 +9,7 @@ net {
ip = "5.196.91.160"
asset {
domain = ${net.domain}
version = 873
version = 874
}
}
play {

View File

@ -128,7 +128,11 @@ function show(ctrl) {
m('p',
ctrl.explorer.config.fullHouse() ?
"Already searching through all available games." :
"Maybe include more games from the preferences menu?")
"Maybe include more games from the preferences menu?"),
m('br'),
m('button.button.text[data-icon=L]', {
onclick: ctrl.explorer.toggle
}, 'Close')
])
]);
}