Fixed style overriding css to hide chat control tabs.
This commit is contained in:
@ -518,8 +518,6 @@ window.chat.chooseAnchor = function(t) {
|
|||||||
elm.scrollTop(elm.data('needsScrollTop'));
|
elm.scrollTop(elm.data('needsScrollTop'));
|
||||||
elm.data('needsScrollTop', null);
|
elm.data('needsScrollTop', null);
|
||||||
}
|
}
|
||||||
|
|
||||||
chat.needMoreMessages();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
window.chat.show = function(name) {
|
window.chat.show = function(name) {
|
||||||
|
@ -30,7 +30,7 @@ body {
|
|||||||
#chatcontrols {
|
#chatcontrols {
|
||||||
height: 38px;
|
height: 38px;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
display: hidden;
|
display: none !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* hide shrink button */
|
/* hide shrink button */
|
||||||
|
@ -32,7 +32,6 @@ public class IITC_Mobile extends Activity {
|
|||||||
|
|
||||||
private IITC_WebView iitc_view;
|
private IITC_WebView iitc_view;
|
||||||
private boolean back_button_pressed = false;
|
private boolean back_button_pressed = false;
|
||||||
private boolean desktop = false;
|
|
||||||
private OnSharedPreferenceChangeListener listener;
|
private OnSharedPreferenceChangeListener listener;
|
||||||
private String intel_url = "https://www.ingress.com/intel";
|
private String intel_url = "https://www.ingress.com/intel";
|
||||||
private boolean user_loc = false;
|
private boolean user_loc = false;
|
||||||
@ -45,7 +44,7 @@ public class IITC_Mobile extends Activity {
|
|||||||
@Override
|
@Override
|
||||||
protected void onCreate(Bundle savedInstanceState) {
|
protected void onCreate(Bundle savedInstanceState) {
|
||||||
super.onCreate(savedInstanceState);
|
super.onCreate(savedInstanceState);
|
||||||
|
|
||||||
// TODO build an async task for url.openStream() in IITC_WebViewClient
|
// TODO build an async task for url.openStream() in IITC_WebViewClient
|
||||||
StrictMode.ThreadPolicy policy = new StrictMode.ThreadPolicy.Builder().permitAll().build();
|
StrictMode.ThreadPolicy policy = new StrictMode.ThreadPolicy.Builder().permitAll().build();
|
||||||
StrictMode.setThreadPolicy(policy);
|
StrictMode.setThreadPolicy(policy);
|
||||||
|
Reference in New Issue
Block a user