summaryrefslogtreecommitdiffstats
path: root/client/components/mixins
Commit message (Collapse)AuthorAgeFilesLines
* Prettier & eslint project style updateJustin Reynolds2019-06-281-9/+11
|
* Hotfix for mobile deviceHaocen Xu2018-07-061-7/+11
|
* Fix card infinite scrolling on card activitiesMaxime Quandalle2016-01-031-6/+1
| | | | | | | | I imagine blaze-component changed their Mixins API since I written this code. We need some tests to avoid this kind of regressions when updating dependencies! Fixes #420
* Enforce a consistent ES6 coding styleMaxime Quandalle2015-09-032-19/+17
| | | | | | | | | Replace the old (and broken) jshint + jscsrc by eslint and configure it to support some of the ES6 features. The command `eslint` currently has one error which is a bug that was discovered by its static analysis and should be fixed (usage of a dead object).
* Switch the font to robotoMaxime Quandalle2015-08-201-1/+9
|
* Improve scrollingMaxime Quandalle2015-05-243-0/+45
We now replace native scrollbar by custom ones on the list card (which is required by the new ergonomics in the parent commit), but the "scrolling engine", is still native, we just hide the scrollbar and draw our own in HTML/CSS using the perfect-scrollbar package (from bower). This commit also implements component scrolling when certain actions are performed, eg scroll to the bottom when the new card composer is opened.