summaryrefslogtreecommitdiffstats
path: root/client/components/cards/minicard.js
Commit message (Collapse)AuthorAgeFilesLines
* Drag handles. In Progress.Lauri Ojansivu2019-09-171-0/+3
|
* Hide minicard label text: per user checkbox setting at sidebar.Lauri Ojansivu2019-08-071-0/+11
| | | | | | | Thanks to xet7 ! Closes #1466, closes #2561
* Prettier & eslint project style updateJustin Reynolds2019-06-281-7/+8
|
* card colors: remove unused variablesBenjamin Tissoires2019-01-241-4/+0
|
* Add the ability to change the card backgroundBenjamin Tissoires2019-01-221-0/+4
| | | | Currently the only way to set it is via the REST API
* Fix lint warningAndrés Manelli2018-08-111-1/+1
|
* Refactor imported -> linked in componentsAndrés Manelli2018-08-111-5/+5
|
* Indicate board or card through icons. Indicate if archivedAndrés Manelli2018-08-111-0/+11
|
* Link descriptionAndrés Manelli2018-08-101-9/+0
|
* Import card-as-card, board-as-card. Add styling. Missing details and linksAndrés Manelli2018-08-101-0/+9
|
* Enforce a consistent ES6 coding styleMaxime Quandalle2015-09-031-2/+2
| | | | | | | | | 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).
* Add a UI to restore archived cardsMaxime Quandalle2015-06-071-36/+0
|
* Start designing the card details paneMaxime Quandalle2015-06-051-0/+8
| | | | Implement a dynamic overflow to focus sight on the pane.
* Implement multi-selectionMaxime Quandalle2015-05-301-1/+24
| | | | | | The UI and the internal APIs are still rough around the edges but the feature is basically working. You can now select multiple cards and move them together or (un|)assign them a label.
* UI improvementsMaxime Quandalle2015-05-271-0/+14
* Implement visibility choice on board creation; * Rework the board header bar. Remove links to un-implemented features; * Implement a board star counter (visible if the board have >2 stars); * Define a new icon (a thin cross) to close elements; * Remove $(document).on('mouseover') event handlers that were basically fired hundreds of times for nothing, we now define a proper Tracker dependency to execute jquery-ui plugin initialization only when something has changed; * Bug fixes related to list scrolling.