Fix IE unsupported javascript construction (#2736)

This commit is contained in:
Lauris BH 2017-10-19 09:00:36 +03:00 committed by Lunny Xiao
parent 847272a70d
commit 222244836f
1 changed files with 2 additions and 2 deletions

View File

@ -1886,14 +1886,14 @@ function initFilterBranchTagDropdown(selector) {
} }
return null; return null;
}, },
getSelectedIndexInFiltered() { getSelectedIndexInFiltered: function() {
for (var i = 0, j = this.filteredItems.length; i < j; ++i) { for (var i = 0, j = this.filteredItems.length; i < j; ++i) {
if (this.filteredItems[i].selected) if (this.filteredItems[i].selected)
return i; return i;
} }
return -1; return -1;
}, },
scrollToActive() { scrollToActive: function() {
var el = this.$refs['listItem' + this.active]; var el = this.$refs['listItem' + this.active];
if (!el || el.length === 0) { if (!el || el.length === 0) {
return; return;