Browse Source

Fixed scroll to found message

master
Igor Zhukov 10 years ago
parent
commit
b9af8fe025
  1. 2
      app/js/controllers.js
  2. 7
      app/js/services.js

2
app/js/controllers.js

@ -221,7 +221,7 @@ angular.module('myApp.controllers', []) @@ -221,7 +221,7 @@ angular.module('myApp.controllers', [])
$scope.$on('history_focus', function (e, peerData) {
$modalStack.dismissAll();
if (peerData.peerString == $scope.curDialog.peer && peerData.messageID == $scope.curDialog.messageID) {
$scope.$broadcast('ui_history_focus');
$scope.$broadcast(peerData.messageID ? 'ui_history_change_scroll' : 'ui_history_focus');
} else {
$location.url('/im?p=' + peerData.peerString + (peerData.messageID ? '&m=' + peerData.messageID : ''));
}

7
app/js/services.js

@ -1806,15 +1806,18 @@ angular.module('myApp.services', []) @@ -1806,15 +1806,18 @@ angular.module('myApp.services', [])
}
function regroupWrappedHistory (history, limit) {
if (!history || !history.length) {
return;
}
var start = 0,
len = history.length,
end = len,
i, curDay, prevDay, curMessage, prevMessage;
if (limit > 0) {
end = limit;
end = Math.min(limit, len);
} else if (limit < 0) {
start = end + limit;
start = Math.max(0, end + limit);
}
for (i = start; i < end; i++) {

Loading…
Cancel
Save