1
0
Fork 0
mirror of https://github.com/koalyptus/TableFilter.git synced 2024-06-16 12:45:49 +02:00

Updated 1.15 No results message (markdown)

koalyptus 2015-12-11 22:42:19 +11:00
parent ccfb4180de
commit 26d90ab7a2

@ -37,7 +37,22 @@ var tfConfig = {
<pre>
var tfConfig = {
help_no_results_message: {
content: '<h3>No results found</h3>'
content: '&lt;h3&gt;No results found&lt;/h3&gt;'
}
};
</pre>
</td>
</tr>
<tr>
<th>custom_container</th>
<td>DOMElement</td>
<td>Specify the external DOM element that will contain the no results message (default - null)</td>
<td></td>
<td>
<pre>
var tfConfig = {
help_no_results_message: {
content: document.querySelector('.myClass');
}
};
</pre>