summaryrefslogtreecommitdiffstats
path: root/client/components/boards/boardHeader.jade
Commit message (Collapse)AuthorAgeFilesLines
* Allow a user to edit its profile or avatar from a member popoverMaxime Quandalle2015-06-191-2/+3
| | | | | | | Fixes the data context on the member popover in the details pane. Also change the way Popover detect if the click is initiated from a parent popover -- from reading Blaze context, to looking at the event target parents.
* Improve the multi-selection experienceMaxime Quandalle2015-06-161-6/+2
| | | | | | | | | | New features: - select all filtered cards - assign or unassign a member to selected cards - archive selected cards This commit also fix the card sort indexes calculation when a multi- selection is drag-dropped.
* Work on the card activities and commentsMaxime Quandalle2015-06-121-0/+2
| | | | | | | | | This commit also introduces a new CSSEvents object that is used to abstract vendor specifics events related to CSS transitions and animations. Fixes #183. Fixes #179.
* Add a UI to restore archived cardsMaxime Quandalle2015-06-071-1/+1
|
* Click on the page to escape the last actionMaxime Quandalle2015-06-071-4/+4
| | | | | | This is a generalization of what we had for closing a popup by clicking outside of it. It now works for inlinedForms and detailsPane as well.
* Restore the popup to add a member to the boardMaxime Quandalle2015-06-061-0/+4
|
* Maintain a visual indication of the popup openerElementMaxime Quandalle2015-06-061-1/+1
|
* Implement multi-selectionMaxime Quandalle2015-05-301-2/+30
| | | | | | 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/+94
* 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.