let farm_level_select work on mobile (fix for #548)

This commit is contained in:
Philipp Schaefer
2013-09-12 14:36:24 +02:00
parent aa219300f8
commit cc78717786
2 changed files with 34 additions and 14 deletions

View File

@ -24,6 +24,7 @@ window.show = function(id) {
case 'map':
window.smartphone.mapButton.click();
$('#portal_highlight_select').show();
$('#farm_level_select').show();
break;
case 'info':
window.smartphone.sideButton.click();
@ -36,5 +37,6 @@ window.show = function(id) {
window.hideall = function() {
$('#chatcontrols, #chat, #chatinput, #sidebartoggle, #scrollwrapper, #updatestatus, #portal_highlight_select').hide();
$('#farm_level_select').hide();
$('#map').css('visibility', 'hidden');
}