forked from kartik-v/yii2-widgets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTypeahead.php
27 lines (24 loc) · 834 Bytes
/
Typeahead.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?php
/**
* @copyright Copyright © Kartik Visweswaran, Krajee.com, 2014
* @package yii2-widgets
* @version 3.4.0
*/
namespace kartik\widgets;
/**
* Typeahead widget is a Yii2 wrapper for the Twitter typeahead.js plugin. This
* input widget is a jQuery based replacement for text inputs providing search
* and typeahead functionality. It is inspired by twitter.com's autocomplete search
* functionality and based on Twitter's typeahead.js which Twitter mentions as
* a fast and fully-featured autocomplete library.
*
* This is an advanced implementation of the typeahead.js plugin included with the
* Bloodhound suggestion engine.
*
* @author Kartik Visweswaran <[email protected]>
* @since 1.0
* @see http://twitter.github.com/typeahead.js/examples
*/
class Typeahead extends \kartik\typeahead\Typeahead
{
}