Philipp Schaefer 615372e137 Merge branch 'master' of github.com:jonatkins/ingress-intel-total-conversion
Conflicts:
	code/panes.js
	mobile/src/com/cradle/iitc_mobile/IITC_NavigationHelper.java
2015-01-24 12:33:14 +01:00

41 lines
983 B
JavaScript

// created to start cleaning up "window" interaction
//
window.show = function(id) {
window.hideall();
runHooks("paneChanged", id);
switch(id) {
case 'all':
case 'faction':
case 'alerts':
window.chat.show(id);
break;
case 'alerts':
window.chat.show('alerts');
break;
case 'debug':
window.debug.console.show();
break;
case 'map':
window.smartphone.mapButton.click();
$('#portal_highlight_select').show();
$('#farm_level_select').show();
break;
case 'info':
window.smartphone.sideButton.click();
break;
}
if (typeof android !== 'undefined' && android && android.switchToPane) {
android.switchToPane(id);
}
}
window.hideall = function() {
$('#chatcontrols, #chat, #chatinput, #sidebartoggle, #scrollwrapper, #updatestatus, #portal_highlight_select').hide();
$('#farm_level_select').hide();
$('#map').css('visibility', 'hidden');
$('.ui-tooltip').remove();
}