Ivan

Results 8 issues of Ivan

``` $("#dateField").datepicker({ maxDate:new Date(), autoClose:true, dateFormat:"dd.mm.yyyy" }) .each( function(){ $(this).data("datepicker").selectDate( parseDateFromString( this.value ) ); }); ``` ```//date format - dd.mm.yy[yy] function parseDateFromString(str) { //replace bad separator to . str =...

Now some properties and methods are declared as "private". It does not allow to expand the behavior. I suggest instead of "private" to use "protected".

https://github.com/la-haute-societe/yii2-save-relations-behavior/issues/46

For example, there are events described in the documentation: `SocialNetworkConnectEvent::EVENT_BEFORE_CONNECT` && `SocialNetworkConnectEvent::EVENT_AFTER_CONNECT` but they are never reached. Registration and authorization use the same controller - `security/auth`, but not `registartion/connect`.

bug
in progress

Сейчас текст комментария жёстко правится методом `\tizis\laraComments\UseCases\CommentService::htmlFilter` и в таком виде сохраняется. Например, я хочу использовать смайлики или markdown-разметку, сейчас мне для этого можно использовать только [постпроцессинг](https://github.com/tizis/laravel-comments/blob/master/readme-ru.md#api-%D0%BF%D1%80%D0%B5%D0%BF%D1%80%D0%BE%D1%86%D0%B5%D1%81%D1%81%D0%B8%D0%BD%D0%B3) при каждом отображении...

I use Bootstrap 4 (throgh a [component](https://github.com/digitv/yii2bootstrap4)). After I start using your component, Bootstrap 3 connects and my styles get overriden. It happens because your component uses dependency in _src/SelectizeAsset.php_...

Имеем три таблицы: Users, Groups и связывается все через таблицу UsersToGroups. В таблице users_to_groups три поля: `user_id, group_id, created_by, updated_by` Соответственно, в модели UsersToGroups есть такое поведение: ` 'blameable' =>...