Details |
Last modification |
View Log
| RSS feed
| Rev |
Author |
Line No. |
Line |
| 15403 |
manish.sha |
1 |
/*
|
|
|
2 |
* typeahead.js
|
|
|
3 |
* https://github.com/twitter/typeahead.js
|
|
|
4 |
* Copyright 2013-2014 Twitter, Inc. and other contributors; Licensed MIT
|
|
|
5 |
*/
|
|
|
6 |
|
|
|
7 |
var html = (function() {
|
|
|
8 |
return {
|
|
|
9 |
wrapper: '<span class="twitter-typeahead"></span>',
|
|
|
10 |
dropdown: '<span class="tt-dropdown-menu"></span>',
|
|
|
11 |
dataset: '<div class="tt-dataset-%CLASS%"></div>',
|
|
|
12 |
suggestions: '<span class="tt-suggestions"></span>',
|
|
|
13 |
suggestion: '<div class="tt-suggestion"></div>'
|
|
|
14 |
};
|
|
|
15 |
})();
|