summaryrefslogtreecommitdiffstats
path: root/client/components/lists
Commit message (Collapse)AuthorAgeFilesLines
* Fix scroll when dragging elements. Remove scrollbars from swimlanes.Andrés Manelli2018-03-062-2/+2
|
* - Fix Scrollbar near top of screen when using internet explorer on Win7Lauri Ojansivu2018-03-051-1/+1
| | | | Thanks to lunatic4ever ! Closes #1524
* Fix #1519 Add Card Btn dissapear on dragAndrés Manelli2018-03-051-0/+2
|
* Remove list max-height 350px. Thanks to xet7 !Lauri Ojansivu2018-03-011-1/+0
| | | | Closes #1512, closes wekan/wekan-snap#35
* Fix scrollbar inside list and outer scrollAndrés Manelli2018-02-281-0/+1
|
* Fix order lists in lists viewAndrés Manelli2018-02-281-4/+77
|
* Remove unused hackAndrés Manelli2018-02-011-3/+1
|
* Fix details view in lists only modeAndrés Manelli2018-01-311-0/+13
|
* Workaround to avoid drag bugAndrés Manelli2018-01-311-1/+3
|
* Add card on first swimlane foundAndrés Manelli2018-01-221-1/+8
|
* Allow toogle of lists and swimlanes viewsAndrés Manelli2018-01-222-1/+8
|
* Fix lint errorsAndrés Manelli2018-01-221-1/+1
|
* Add siwmlane button. Allow card drop between swimlanesAndrés Manelli2018-01-192-3/+3
|
* First swimlane draft, no functionalityAndrés Manelli2018-01-193-2/+4
|
* working fix for wekan/wekan#476 in listsDPLV\dpoz2018-01-081-1/+3
| | | | working fix for wekan/wekan#476 in lists
* Fixed - make it easier to see the Adding Card btn at top of listThuan Pham Quoc2017-12-101-0/+1
|
* Optimize for mobile web, show single list per page with navigate barnztqa2017-11-295-6/+83
|
* Make it possible to translate text Soft WIP Limit.Lauri Ojansivu2017-11-021-1/+1
|
* added soft wip limit feature, fixed wipLimit=0 bug (??)amadilsons2017-10-314-17/+47
|
* Permit editing the WIP limitJacob Weisz2017-10-261-2/+2
| | | | | | | This is a fix for #1310 and required for Edge users to be able to edit the WIP limit. (The up/down buttons appear to be "optional" according to the HTML5 spec, and can't be assumed to be present.) I also believe I fixed a spelling error in the same section. This PR is **NOT TESTED**
* Fix: User with comment only permission can add cards. Thanks to xet7 ! ↵Lauri Ojansivu2017-10-201-3/+4
| | | | Closes #1301
* Fix: When WIP limit in use, hide also add card + button at top of list. ↵Lauri Ojansivu2017-10-091-1/+2
| | | | Thanks to xet7 !
* added i18n translation, minor fixamadilsons2017-10-052-5/+5
|
* feature implemented, known bugs fixedamadilsons2017-10-054-39/+28
|
* most work concluded, code needs clean up, further testing requiredamadilsons2017-10-045-76/+60
|
* on its wayamadilsons2017-10-043-13/+95
|
* mostly frontend work, lists coll update with wipLimit fieldamadilsons2017-09-293-12/+36
|
* basic frontend setup, List model updated with wipLimit fieldamadilsons2017-09-282-0/+18
|
* #1233 Added plus button to add card on top of the listMário Orlický2017-09-243-12/+15
|
* 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