Browse Source

Fix IE unsupported javascript construction (#2736)

for-closed-social
Lauris BH 7 years ago
committed by Lunny Xiao
parent
commit
222244836f
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      public/js/index.js

+ 2
- 2
public/js/index.js View File

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

Loading…
Cancel
Save