Commit 333630ae by Antonio Ramirez

fix formatting

parent b659d873
...@@ -63,7 +63,7 @@ class ActiveField extends \yii\widgets\ActiveField ...@@ -63,7 +63,7 @@ class ActiveField extends \yii\widgets\ActiveField
{ {
static $counter = 0; static $counter = 0;
$this->inputOptions['class'] .= ' typeahead-' . (++$counter); $this->inputOptions['class'] .= ' typeahead-' . (++$counter);
foreach($data as &$item) { foreach ($data as &$item) {
$item = array('word' => $item); $item = array('word' => $item);
} }
$this->form->getView()->registerJs("yii.gii.autocomplete($counter, " . Json::encode($data) . ");"); $this->form->getView()->registerJs("yii.gii.autocomplete($counter, " . Json::encode($data) . ");");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment