aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--public/js/index.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/public/js/index.js b/public/js/index.js
index a143160da6..a8dbfd7b33 100644
--- a/public/js/index.js
+++ b/public/js/index.js
@@ -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;