1
0
Fork 0
mirror of https://github.com/koalyptus/TableFilter.git synced 2024-06-01 13:32:40 +02:00

Updated 1.15 No results message (markdown)

koalyptus 2015-12-11 22:55:15 +11:00
parent 49cf4fce4e
commit 4015e7e256

@ -118,6 +118,40 @@ var tfConfig = {
console.log(feature);
}
}
};
</pre>
</td>
</tr>
<tr>
<th>on_before_hide_msg</th>
<td>function</td>
<td>Callback invoked just before a no results message is closed (default - null)</td>
<td></td>
<td>
<pre>
var tfConfig = {
no_results_message: {
on_before_hide_msg: function(tf, feature){
console.log(feature);
}
}
};
</pre>
</td>
</tr>
<tr>
<th>on_after_hide_msg</th>
<td>function</td>
<td>Callback invoked just after a no results message is closed (default - null)</td>
<td></td>
<td>
<pre>
var tfConfig = {
no_results_message: {
on_after_hide_msg: function(tf, feature){
console.log(feature);
}
}
};
</pre>
</td>