Browse Source

Mobile bugfixes

master
Igor Zhukov 10 years ago
parent
commit
0a0a6177d8
  1. 2
      app/css/app_mobile.css
  2. 2
      app/js/services.js
  3. 4
      app/partials/message_service.html

2
app/css/app_mobile.css

@ -172,6 +172,8 @@ html { @@ -172,6 +172,8 @@ html {
color: #FFF;
margin: 0;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
}
.navbar-quick-back-title {
max-width: 160px;

2
app/js/services.js

@ -328,7 +328,7 @@ angular.module('myApp.services', []) @@ -328,7 +328,7 @@ angular.module('myApp.services', [])
isAvailable: isAvailable,
openPhonebookImport: openPhonebookImport,
getPhonebookContacts: getPhonebookContacts
}
};
function isAvailable () {
if (Config.Navigator.ffos && Config.Modes.packed) {

4
app/partials/message_service.html

@ -13,7 +13,7 @@ @@ -13,7 +13,7 @@
</span>
<span ng-switch-when="messageActionChatAddUser" ng-switch="::historyMessage.from_id != historyMessage.action.user_id">
<span ng-switch-when="true">
invited <a my-user-link="historyMessage.action.user_id"></a>
invited <a my-user-link="historyMessage.action.user_id" color="true"></a>
</span>
<span ng-switch-default>
returned to group
@ -21,7 +21,7 @@ @@ -21,7 +21,7 @@
</span>
<span ng-switch-when="messageActionChatDeleteUser" ng-switch="::historyMessage.from_id != historyMessage.action.user_id">
<span ng-switch-when="true">
kicked <a my-user-link="historyMessage.action.user_id"></a>
kicked <a my-user-link="historyMessage.action.user_id" color="true"></a>
</span>
<span ng-switch-default>
left group

Loading…
Cancel
Save