BootstrapJUI.php 276 B

12345678910111213141516
  1. <?php
  2. namespace Medgis\RootBundle;
  3. use yiins\Yii;
  4. use yiins\web\AssetBundle;
  5. class BootstrapJUI extends AssetBundle
  6. {
  7. public function init()
  8. {
  9. $this->js[] = trim(Yii::web()->clientScript->scriptMap['jquery-ui.min.js'], '/');
  10. parent::init();
  11. }
  12. }