From 08ad07701e7e2a81836af90d9cdf88f979fc4216 Mon Sep 17 00:00:00 2001 From: Wesley Cho Date: Sun, 1 Nov 2015 17:56:34 -0800 Subject: [PATCH] chore(typeahead): clean up code style --- src/typeahead/typeahead.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/typeahead/typeahead.js b/src/typeahead/typeahead.js index b9978feffd..dcc9443ebc 100644 --- a/src/typeahead/typeahead.js +++ b/src/typeahead/typeahead.js @@ -556,7 +556,7 @@ angular.module('ui.bootstrap.typeahead', ['ui.bootstrap.position']) }; scope.selectMatch = function(activeIdx) { - scope.select({activeIdx:activeIdx}); + scope.select({activeIdx: activeIdx}); }; } };