summaryrefslogtreecommitdiffstats
path: root/client/components/sidebar
Commit message (Collapse)AuthorAgeFilesLines
...
* Filter on custom fields presenceIgnatzHome2018-05-192-1/+9
|
* first test for custom fields filterIgnatz2018-05-181-0/+6
|
* indend correctionsIgnatz2018-05-181-5/+5
|
* template literals correctionIgnatz2018-05-181-1/+1
|
* linter correctionsIgnatz2018-05-181-13/+14
|
* removing checkbox types part 2IgnatzHome2018-05-171-2/+2
|
* resolving merge conflictsIgnatzHome2018-05-174-22/+222
|\
| * dropdown itemsPouyan Savoli2017-09-223-45/+109
| |
| * many custom fields model and UI enhancementsPouyan Savoli2017-09-224-47/+96
| |
| * Create custom fields creation UI added to Board Menu, Model in progressPouyan Savoli2017-09-223-0/+87
| |
* | Fix lint warningsGhassen Rjab2018-02-271-1/+1
| |
* | Add search sidebarGhassen Rjab2018-02-234-0/+30
| |
* | Add popup menu and archive actionAndrés Manelli2018-02-012-0/+23
| |
* | Fix and update translations. Thanks to xet7 ! Closes #1286Lauri Ojansivu2017-10-101-1/+1
| |
* | Merge branch 'userSelfRemove' of https://github.com/amadilsons/wekan into ↵Lauri Ojansivu2017-10-092-13/+21
|\ \ | | | | | | | | | amadilsons-userSelfRemove
| * | user can now leave the boardamadilsons2017-10-092-13/+21
| |/
* / most work concluded, code needs clean up, further testing requiredamadilsons2017-10-041-1/+3
|/
* fix understood syntaxRyan Helsing2017-03-191-2/+2
|
* comment only working, naive implementation completeRyan Helsing2017-03-181-1/+1
|
* dont show list optionsRyan Helsing2017-03-181-1/+0
|
* ability to store comment only, actual prevention nextRyan Helsing2017-03-182-4/+32
|
* to remove 'multiple attributes' errorJoel Louzado2017-02-201-1/+2
|
* removed trailing-whitespaceJoel Louzado2017-02-151-1/+1
|
* Added dynamic tooltip for sidebar tongueJoel Louzado2017-02-152-1/+8
|
* Merge branch 'feature/link-to-shortcuts' of ↵Lauri Ojansivu2017-02-103-10/+36
|\ | | | | | | https://github.com/AlexanderS/wekan into AlexanderS-feature/link-to-shortcuts
| * UI: Add link to keyboard shortcutsAlexander Sulfrian2016-04-253-10/+36
| |
* | Merge branch 'fix-quit-board' of https://github.com/umbertooo/wekan into ↵Lauri Ojansivu2017-02-101-2/+2
|\ \ | | | | | | | | | umbertooo-fix-quit-board
| * | Method 'quitBoard' requires boardId but got boardFelix Michels2016-10-261-2/+2
| | |
* | | fixed warning in jade templatemario.orlicky2017-01-291-3/+2
| | |
* | | removed unused html span elementMario Orlicky2016-11-131-2/+2
| | |
* | | added buttons to support filtering by empty labels and membersMario Orlicky2016-11-131-0/+12
| | |
* | | UI: Fixed background on hover for labels in filter sidebarMario Orlicky2016-11-131-0/+1
| | |
* | | only show 'add member' button to users who can edit the boardDavid Renshaw2016-11-031-2/+3
| | |
* | | powerbox identity requestsDavid Renshaw2016-11-032-4/+9
|/ /
* / profile.name is called profile.fullname (#615)Alexander Sulfrian2016-07-111-1/+1
|/ | | | The name of the profile field was changed log ago. This fixes the remaining wrong references.
* Upgrade ESLint to v2Maxime Quandalle2016-03-171-2/+2
| | | | This commit also tweak the code style following backward-incompatible v2 rules.
* Remove unnecessary template name declarationMaxime Quandalle2016-01-033-20/+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 card infinite scrolling on card activitiesMaxime Quandalle2016-01-031-3/+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
* Fix drag and drop on SandstormMaxime Quandalle2015-12-301-4/+10
| | | | | | | | | | | | | | 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
* Unassign members before removing them from a boardMaxime Quandalle2015-12-211-2/+5
| | | | Closes #399
* add: support compact mode for mobile web, auto adapt to small screen/windowLiming Xie2015-12-173-1/+53
|
* Add a button to move selected cardsMaxime Quandalle2015-12-102-0/+15
| | | | | | | This is an alternative to drag and drop to move a set of selected cards. This feature was available at the list level until I deleted it in 5bdf91b, so it makes sense to add it back at the multi-selection level.
* Remove the move and archive all cards of a list featureMaxime Quandalle2015-12-091-0/+1
| | | | | | | | | | 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-082-32/+26
|
* add: invite user via email, invited user can accept or decline, allow member ↵floatinghotpot2015-12-072-33/+127
| | | | to quit
* Improve Sandstorm usernames managementMaxime Quandalle2015-11-111-1/+1
| | | | | | | | We now use the `preferredHandle` exposed by Sandstorm as source for the username and append a number if the username is already taken since we need to ensure username uniqueness (eg 'max', 'max1', 'max2') Fixes #352
* Finish the minicard editor auto-completion featureMaxime Quandalle2015-11-081-1/+1
| | | | | | | | | | | 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
* Prefer ES5 methods over underscore utilitiesMaxime Quandalle2015-10-221-2/+2
| | | | | | | | | | | | | | Since 07cc454 (ie the switch to Meteor 1.2) we includes the `es5-shim` polyfill to support methods like `Array.prototype.forEach` in a consistent way across all supported browsers (IE8+). MDG recently released a blog post recommending the use of these native methods instead of underscore [0]. We know follow this recommendation. This commit also favor some ES6 features (argument defaults, destructing assignment) in places where we didn’t use them. [0]: http://info.meteor.com/blog/es2015-get-started
* Upgrade peerlibrary:blaze-components to v0.14Maxime Quandalle2015-10-211-1/+1
| | | | | This change includes method renames and others UI related packages updates.
* Translate the label colorsMaxime Quandalle2015-10-151-1/+1
|