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 {
color: #FFF; color: #FFF;
margin: 0; margin: 0;
white-space: nowrap; white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
} }
.navbar-quick-back-title { .navbar-quick-back-title {
max-width: 160px; max-width: 160px;

2
app/js/services.js

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

4
app/partials/message_service.html

@ -13,7 +13,7 @@
</span> </span>
<span ng-switch-when="messageActionChatAddUser" ng-switch="::historyMessage.from_id != historyMessage.action.user_id"> <span ng-switch-when="messageActionChatAddUser" ng-switch="::historyMessage.from_id != historyMessage.action.user_id">
<span ng-switch-when="true"> <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>
<span ng-switch-default> <span ng-switch-default>
returned to group returned to group
@ -21,7 +21,7 @@
</span> </span>
<span ng-switch-when="messageActionChatDeleteUser" ng-switch="::historyMessage.from_id != historyMessage.action.user_id"> <span ng-switch-when="messageActionChatDeleteUser" ng-switch="::historyMessage.from_id != historyMessage.action.user_id">
<span ng-switch-when="true"> <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>
<span ng-switch-default> <span ng-switch-default>
left group left group

Loading…
Cancel
Save