Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added ability to ignore assets #222

Open
wants to merge 10 commits into
base: master
Choose a base branch
from
Prev Previous commit
Next Next commit
Changed to ready
mabentley85 committed Nov 14, 2017
commit c84511145568024bafe9b9d699c12c992b6c1500
2 changes: 1 addition & 1 deletion src/DynamicFormWidget.php
Original file line number Diff line number Diff line change
@@ -217,7 +217,7 @@ public function registerAssets($view)
$view->registerJs($js, $view::POS_READY);

$js = 'jQuery("#' . $this->formId . '").yiiDynamicForm(' . $this->_hashVar .');' . "\n";
$view->registerJs($js, $view::POS_LOAD);
$view->registerJs($js, $view::POS_READY);
}

/**