Skip to content
This repository has been archived by the owner on May 29, 2019. It is now read-only.

Commit

Permalink
fix(typeahead): support IE8
Browse files Browse the repository at this point in the history
  • Loading branch information
seankenny authored and pkozlowski-opensource committed Nov 18, 2013
1 parent 0d810ac commit 0e9f998
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/typeahead/typeahead.js
Expand Up @@ -68,7 +68,7 @@ angular.module('ui.bootstrap.typeahead', ['ui.bootstrap.position', 'ui.bootstrap
var hasFocus;

//pop-up element used to display matches
var popUpEl = angular.element('<typeahead-popup></typeahead-popup>');
var popUpEl = angular.element('<div typeahead-popup></div>');
popUpEl.attr({
matches: 'matches',
active: 'activeIdx',
Expand Down Expand Up @@ -283,7 +283,7 @@ angular.module('ui.bootstrap.typeahead', ['ui.bootstrap.position', 'ui.bootstrap

.directive('typeaheadPopup', function () {
return {
restrict:'E',
restrict:'EA',
scope:{
matches:'=',
query:'=',
Expand Down Expand Up @@ -318,7 +318,7 @@ angular.module('ui.bootstrap.typeahead', ['ui.bootstrap.position', 'ui.bootstrap

.directive('typeaheadMatch', ['$http', '$templateCache', '$compile', '$parse', function ($http, $templateCache, $compile, $parse) {
return {
restrict:'E',
restrict:'EA',
scope:{
index:'=',
match:'=',
Expand Down
2 changes: 1 addition & 1 deletion template/typeahead/typeahead-popup.html
@@ -1,5 +1,5 @@
<ul class="typeahead dropdown-menu" ng-style="{display: isOpen()&&'block' || 'none', top: position.top+'px', left: position.left+'px'}">
<li ng-repeat="match in matches" ng-class="{active: isActive($index) }" ng-mouseenter="selectActive($index)" ng-click="selectMatch($index)">
<typeahead-match index="$index" match="match" query="query" template-url="templateUrl"></typeahead-match>
<div typeahead-match index="$index" match="match" query="query" template-url="templateUrl"></div>
</li>
</ul>

0 comments on commit 0e9f998

Please sign in to comment.