2amigos / yii2-date-time-picker-widget

Bootstrap DateTimePicker Widget for Yii2
Other
44 stars 35 forks source link

asset error if Yii_debug false #2

Closed gimox closed 9 years ago

gimox commented 9 years ago

there is an error in DateTimePickerAsset.php file

al line 29:

     $this->js[] = YII_DEBUG ? 'js/bootstrap-datetimepicker.js' : 'css/bootstrap-datetimepicker.min.js';

need to be changed with

  $this->js[] = YII_DEBUG ? 'js/bootstrap-datetimepicker.js' : 'js/bootstrap-datetimepicker.min.js';

js asset for non debug is incorrect linked to css directory.

gimox commented 9 years ago

i see that your repo is fixed but composer has the error.

wmfunk commented 9 years ago

really helpful. saved me lot of time. thx gimox

AntonYu commented 9 years ago

You can use

"2amigos/yii2-date-time-picker-widget": "dev-master"

in composer.json

gimox commented 9 years ago

hi! there is the problem jet! Please update composer.

tonydspaniard commented 9 years ago

done