mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-31 21:28:11 +09:00 
			
		
		
		
	Fix IE unsupported javascript construction (#2736)
This commit is contained in:
		| @@ -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; | ||||
|   | ||||
		Reference in New Issue
	
	Block a user