| 15403 |
manish.sha |
1 |
var fixtures = fixtures || {};
|
|
|
2 |
|
|
|
3 |
fixtures.html = {
|
|
|
4 |
textInput: '<input type="text">',
|
|
|
5 |
input: '<input class="tt-input" type="text" autocomplete="false" spellcheck="false">',
|
|
|
6 |
hint: '<input class="tt-hint" type="text" autocomplete="false" spellcheck="false" disabled>',
|
|
|
7 |
menu: '<span class="tt-dropdown-menu"></span>',
|
|
|
8 |
dataset: [
|
|
|
9 |
'<div class="tt-dataset-test">',
|
|
|
10 |
'<span class="tt-suggestions">',
|
|
|
11 |
'<div class="tt-suggestion"><p>one</p></div>',
|
|
|
12 |
'<div class="tt-suggestion"><p>two</p></div>',
|
|
|
13 |
'<div class="tt-suggestion"><p>three</p></div>',
|
|
|
14 |
'</span>',
|
|
|
15 |
'</div>'
|
|
|
16 |
].join('')
|
|
|
17 |
};
|