54 lines
1.7 KiB
JavaScript
54 lines
1.7 KiB
JavaScript
|
/* jshint indent: false */
|
||
|
exports.fruits = [
|
||
|
'<ul id="fruits">',
|
||
|
'<li class="apple">Apple</li>',
|
||
|
'<li class="orange">Orange</li>',
|
||
|
'<li class="pear">Pear</li>',
|
||
|
'</ul>'
|
||
|
].join('');
|
||
|
|
||
|
exports.vegetables = [
|
||
|
'<ul id="vegetables">',
|
||
|
'<li class="carrot">Carrot</li>',
|
||
|
'<li class="sweetcorn">Sweetcorn</li>',
|
||
|
'</ul>'
|
||
|
].join('');
|
||
|
|
||
|
exports.chocolates = [
|
||
|
'<ul id="chocolates">',
|
||
|
'<li class="linth" data-highlight="Lindor" data-origin="swiss">Linth</li>',
|
||
|
'<li class="frey" data-taste="sweet" data-best-collection="Mahony">Frey</li>',
|
||
|
'<li class="cailler">Cailler</li>',
|
||
|
'</ul>'
|
||
|
].join('');
|
||
|
|
||
|
exports.drinks = [
|
||
|
'<ul id="drinks">',
|
||
|
'<li class="beer">Beer</li>',
|
||
|
'<li class="juice">Juice</li>',
|
||
|
'<li class="milk">Milk</li>',
|
||
|
'<li class="water">Water</li>',
|
||
|
'<li class="cider">Cider</li>',
|
||
|
'</ul>'
|
||
|
].join('');
|
||
|
|
||
|
exports.food = [
|
||
|
'<ul id="food">',
|
||
|
exports.fruits,
|
||
|
exports.vegetables,
|
||
|
'</ul>'
|
||
|
].join('');
|
||
|
|
||
|
exports.inputs = [
|
||
|
'<select id="one"><option value="option_not_selected">Option not selected</option><option value="option_selected" selected>Option selected</option></select>',
|
||
|
'<input type="text" value="input_text" />',
|
||
|
'<input type="checkbox" name="checkbox_off" value="off" /><input type="checkbox" name="checkbox_on" value="on" checked />',
|
||
|
'<input type="radio" value="off" name="radio" /><input type="radio" name="radio" value="on" checked />',
|
||
|
'<select id="multi" multiple><option value="1">1</option><option value="2" selected>2</option><option value="3" selected>3</option><option value="4">4</option></select>'
|
||
|
].join('');
|
||
|
|
||
|
exports.text = [
|
||
|
'<p>Apples, <b>oranges</b> and pears.</p>',
|
||
|
'<p>Carrots and <!-- sweetcorn --></p>'
|
||
|
].join('');
|