Update typeahead docs to reflect new option.

This commit is contained in:
Nirav Sanghani 2012-04-16 17:24:51 -07:00
parent 8e8b1ad03d
commit d5a95315eb

View File

@ -1490,6 +1490,12 @@ $('.carousel').carousel({
<td>highlights all default matches</td> <td>highlights all default matches</td>
<td>Method used to highlight autocomplete results. Accepts a single argument <code>item</code> and has the scope of the typeahead instance. Should return html.</td> <td>Method used to highlight autocomplete results. Accepts a single argument <code>item</code> and has the scope of the typeahead instance. Should return html.</td>
</tr> </tr>
<tr>
<td>updater</td>
<td>function</td>
<td>updates input with selection</td>
<td>Method used to update input contents. Accepts a single argument <code>item</code> and has the scope of the typeahead instance. Should return a string.</td>
</tr>
</tbody> </tbody>
</table> </table>