ijakparov
ijakparov
> I think it should still work. You could try it with a test database and then run the tests - to be sure. It's increase AI value on session...
Поднял на чистом bem express для воспроизведения бага https://mikhaylovsky.develop72.ru/ deps ``` ({ shouldDeps: [ { block: 'select', mods: { theme: 'islands', size: 'l', mode: 'radio', }, } ] }) ```...
Можно переопределить метод onInit у блока menu в ibem-js добавив проверку на скрол тачем: ``` onInit: function () { var touchMoving = false; document.ontouchmove = function (e) { touchMoving =...
Доопределение button.js с заменой pointerclick на click ```js modules.define( 'button', ['i-bem-dom', 'jquery', 'dom'], function(provide, bemDom, $, dom, Button) { provide(bemDom.declBlock(Button,{ _onPointerRelease : function(e) { this._isPointerPressInProgress = false; this._domEvents(bemDom.doc).un('pointerrelease', this._onPointerRelease); if(e.originalEvent.type...
> For now, I solved using : > > ``` > public static create(array $attributes = []) > { > if (!isset($attributes['id'])) { > $attributes['id'] = self::all()->last()->id + 1; >...
> > Привет! Хочу использовать твою работу, на сколько она сырая для интеграции с крупным проектом на продакшене? > > Получилось использовать? Если да, то какие сложности возникли? После проведения...
> общие вещи: > 0. сейчас сборка падает > > 1. хочется, чтобы пулл-реквесты вносили максимально атомарные изменения. например, в рамках данного pr-а нет смысла обновлять nodemon (он, кстати, и...