-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add test for special chars, and fix quotes and other special chars no…
…t being interpreted correctly when searching.
- Loading branch information
Showing
3 changed files
with
190 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
<html> | ||
<head> | ||
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script> | ||
<script src="../bower_components/every-insert/dist/every-insert-latest.js"></script> | ||
<script src="../dist/form-helpers-latest.js"></script> | ||
<style> | ||
ul { | ||
padding: 0; | ||
margin: 0; | ||
} | ||
.select-wrapper { | ||
border: 1px solid black; | ||
} | ||
|
||
.select-active { | ||
border: 1px solid orange; | ||
} | ||
|
||
li.hover { | ||
color: red; | ||
} | ||
|
||
li.active,li:active { | ||
color: blue; | ||
} | ||
|
||
.select-wrapper-open .select-options { | ||
max-height: 300px !important; | ||
overflow: scroll !important; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<div class="input input-select" style="float: left"> | ||
<select name="size"> | ||
<option value="az">az</option> | ||
<option value=""">"</option> | ||
<option value="'">'</option> | ||
<option value=">">></option> | ||
</select> | ||
</div> | ||
</body> | ||
</html> |