Move current line into history when pressing down in input bar

This commit is contained in:
Lorenz Hübschle-Schneider 2014-07-21 15:35:53 +01:00
parent ff63a9d8bd
commit edb34144c7

View file

@ -167,7 +167,14 @@ models.service('models', ['$rootScope', '$filter', function($rootScope, $filter)
};
var getHistoryDown = function(currentLine) {
if (historyPos < 0 || historyPos >= history.length) {
if (historyPos === history.length) {
// stash on history like weechat does
if (currentLine !== undefined && currentLine !== '') {
history.push(currentLine);
historyPos++;
}
return '';
} else if (historyPos < 0 || historyPos > history.length) {
// Can't go down from out of bounds or last message
return currentLine;
} else {