-
Notifications
You must be signed in to change notification settings - Fork 122
Closed
Labels
Milestone
Description
When I try one of the demonstration examples in my project everything works perfectly but when I combine it with the latest bootstrap version then the little x to clear the input field is no longer visible.
this is my index file
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="">
<meta name="author" content="">
<link rel="icon" href="img/favicon.ico">
<title>My Project</title>
<link type="text/css" rel="stylesheet" href="css/bootstrap.css">
<link type="text/css" rel="stylesheet" href="css/jquery.typeahead.css">
<link type="text/css" rel="stylesheet" href="css/theme.css">
</head>
<body>
....
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.0.7/angular.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.0.7/angular-resource.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular-ui-router/0.2.18/angular-ui-router.min.js"></script>
<script src="http://code.jquery.com/jquery-2.1.0.min.js"></script>
<script src="js/bootstrap/bootstrap.js"></script>
<script src="js/bootstrap/jquery.typeahead.js"></script>
</body>
when i remove the line
everything works fine
I use bootstrap 3.3.6 + JQuery Typeahead 2.3.4
Is this a known issue ?