summaryrefslogtreecommitdiffstats
path: root/client/components/cards/minicard.js
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'master' of https://github.com/wekan/wekan into lib-changeRomulus Urakagi Tsai2020-02-131-3/+23
|\
| * Add Worker role.Lauri Ojansivu2020-01-031-10/+6
| | | | | | | | | | | | | | | | | | Add more Font Awesome icons. Fix browser console errors when editing user profile name etc. Thanks to xet7 ! Closes #2788
| * Fix lint errors.Lauri Ojansivu2019-11-261-6/+2
| |
| * When logged in, use database for setting, so that changes areLauri Ojansivu2019-11-191-10/+20
| | | | | | | | | | | | | | immediate. Only on public board use cookies. Comment out Collapse CSS that is not in use. Thanks to xet7 !
| * New feature: Now there is popup selection of Lists/Swimlanes/Calendar/Roles.Lauri Ojansivu2019-11-181-3/+21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | New feature, not set visible yet, because switching to it does not work properly yet: Collapsible Swimlanes #2804 Fix: Public board now loads correctly. When you select one of Lists/Swimlanes/Calendar view and reload webbrowser page, it can change view. Closes #2311 Fix: List sorting commented out. Closes #2800 Fix: Errors hasHiddenMinicardText, hasShowDragHandles, showSort, hasSortBy, profile, FirefoxAndroid/IE11/Vivaldi/Chromium browsers not working by using cookies instead of database. More details at https://github.com/wekan/wekan/issues/2643#issuecomment-554907955 Note: Cookie changes are not always immediate, if there is no effect, you may need to reload webbrowser page. Closes #2643 . Thanks to xet7 !
* | Change to relative path and /var/attachments to storeRomulus Urakagi Tsai2020-01-141-1/+1
| |
* | Uploaded done, but uploading notRomulus Urakagi Tsai2019-11-271-0/+3
|/
* Add Features: allowing lists to be sorted by modifiedAt when not in ↵Lauri Ojansivu2019-10-291-0/+3
| | | | | | | | | | | | draggable mode. Bug Fix #2093: the broken should be prior to file attachment feature introduced, and tested export board is working. Thanks to whowillcare ! ( xet7 merged this pull request manually from https://github.com/wekan/wekan/pull/2756 ) Closes #2093
* Revert drag handle changes.Lauri Ojansivu2019-10-031-3/+0
|
* 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.