summaryrefslogtreecommitdiffstats
path: root/client/components/lists
Commit message (Collapse)AuthorAgeFilesLines
* card model and card ui preparation for custom fieldsPouyan Savoli2017-09-221-0/+7
|
* Usernames should be able to include dots (.)Jonas Oberg2017-08-251-1/+1
|
* Add delete the card belonging to when deleting the listnztqa2017-06-071-0/+1
|
* Fix lint errors.Lauri Ojansivu2017-06-021-1/+1
|
* Fix lint errors.Lauri Ojansivu2017-06-021-35/+36
|
* Fix some lint errors.Lauri Ojansivu2017-06-021-58/+59
|
* Merge branch 'devel' of https://github.com/BaobabCoder/wekan into ↵Lauri Ojansivu2017-06-022-58/+78
|\ | | | | | | BaobabCoder-devel
| * Fix missing popup titleBaobabCoder2017-06-021-1/+1
| |
| * Change the way to remove a list (card like)BaobabCoder2017-06-022-58/+78
| |
* | comment only working, naive implementation completeRyan Helsing2017-03-181-2/+2
| |
* | current progressRyan Helsing2017-03-183-2/+9
| |
* | dont show list optionsRyan Helsing2017-03-181-10/+11
| |
* | Fix executeUpTo label when dragging cardsCurtis G2017-02-051-1/+1
|/ | | 'popup' is not in the predefined hierarchy
* Fix activity message for list deletionBéranger Campardou2017-01-201-0/+1
|
* merge weforkBéranger Campardou2017-01-132-0/+12
|\
| * New option to set up minimum limit to show cards count for each list in boardMario Orlicky2016-11-252-0/+12
| |
* | missing comaBéranger Campardou2017-01-131-1/+1
| |
* | Remove a listBéranger Campardou2017-01-122-0/+8
|/
* Upgrade ESLint to v2Maxime Quandalle2016-03-171-1/+3
| | | | This commit also tweak the code style following backward-incompatible v2 rules.
* Add notification, allow watch boards / lists / cardsLiming Xie2016-01-053-0/+27
|
* Remove unnecessary template name declarationMaxime Quandalle2016-01-033-16/+0
| | | | | | This code was duplicate with the name we use to `register` the component. A update of blaze-component removed the need to duplicate this declaration.
* Fix drag and drop on SandstormMaxime Quandalle2015-12-301-3/+9
| | | | | | | | | | | | | | This bug was introduced with the introduction of fast-render in 41b23f8. With fast-render data is available instantly after the page logging, but calls to `Meteor.userId()` still return `null` as the user isn't authenticated on the DDP channel yet (previously the data was loaded on DDP after user authentication). Which mean that we know need to reactively activate Drag and Drop on user log in. I'm not sure why I was not able to reproduce this bug outside of Sandstorm. Fixes #453
* Remove the import trello card featureMaxime Quandalle2015-12-222-2/+0
| | | | | | See the following discussion for rationale: https://github.com/wekan/wekan/issues/113#issuecomment-163039089
* add: support compact mode for mobile web, auto adapt to small screen/windowLiming Xie2015-12-171-1/+1
|
* Dynamically resize the new card form if the title is too longMaxime Quandalle2015-12-091-1/+6
|
* Remove the move and archive all cards of a list featureMaxime Quandalle2015-12-092-28/+0
| | | | | | | | | | This operation should now be handled using the multi-selection feature, ie “select all cards” and then move them or click the “archive selection” button. This new process add an extra click which I consider reasonable enough for a relatively rare operation -- plus I want to encourage mutli-selection usage. Closes #390.
* bugfix: only care active members, also optimize some codefloatinghotpot2015-12-081-1/+1
|
* Finish the minicard editor auto-completion featureMaxime Quandalle2015-11-084-89/+86
| | | | | | | | | | | This commit stands on the initial support implemented in #342. We now avoid error-prone parsing step by adding the member or the label directly to the card object. We also added support for `Tab` to completion on our textComplete component. Closes #342
* Merge branch 'devel' into minicard-editorMaxime Quandalle2015-10-314-10/+13
|\ | | | | | | | | Conflicts: client/components/lists/listBody.js
| * Fix some bugs introduced in aa974aaMaxime Quandalle2015-10-291-2/+2
| | | | | | | | | | Yes Wekan need some tests. Yes I need to stop refactoring my code when I’m halp-sleeping in my bed at 4am.
| * Upgrade Meteor to 1.2.1-rc4Maxime Quandalle2015-10-232-6/+6
| | | | | | | | | | | | This version includes a more complete selection of ES2015 polyfills that I started used across the code base, for instance by replacing `$.trim(str)` by `str.trim()`.
| * Upgrade peerlibrary:blaze-components to v0.14Maxime Quandalle2015-10-213-4/+4
| | | | | | | | | | This change includes method renames and others UI related packages updates.
| * Import board: added UIXavier Priour2015-10-172-48/+0
| |
| * Add some ESLint rules and fix some related issuesMaxime Quandalle2015-10-141-4/+2
| |
| * Import single card: proper error handlingXavier Priour2015-10-142-23/+41
| |
| * Import single card: refactor to meteor methodXavier Priour2015-10-142-55/+14
| |
| * Import single card: archived cardXavier Priour2015-10-141-0/+1
| |
| * Import single card: map labelsXavier Priour2015-10-141-10/+33
| |
| * Import single card: now with description and commentsXavier Priour2015-10-141-1/+16
| |
| * Import single card: title and proper sort indexXavier Priour2015-10-141-0/+26
| |
| * Add card import UIXavier Priour2015-10-142-0/+11
| |
| * Use a better API to retrieve the new card positionMaxime Quandalle2015-10-131-1/+1
| | | | | | | | Fixes #347
* | Made colours light grey in the labels dropdownKenton Hamaluik2015-10-101-1/+6
| |
* | Added coloured label badges in autocomplete listKenton Hamaluik2015-10-081-5/+14
| |
* | Pressing escape while autocomplete is open no longer closes the minicardKenton Hamaluik2015-10-081-0/+5
| |
* | Now cards with *only* metadata aren't created emptyKenton Hamaluik2015-10-081-27/+27
| |
* | Added space after if to conform to formattingKenton Hamaluik2015-10-081-3/+3
| |
* | Fixed issue with possible race condition, suggested by @mquandalleKenton Hamaluik2015-10-081-8/+4
| |
* | Fixed typo in template for quick-adding a user.Kenton Hamaluik2015-10-031-1/+1
| |
* | Made eslinter happy.Kenton Hamaluik2015-10-031-12/+12
| |