summaryrefslogtreecommitdiffstats
path: root/client/components/boards/boardHeader.jade
Commit message (Collapse)AuthorAgeFilesLines
* Update translation source fileMaxime Quandalle2015-09-011-4/+4
|
* Fixes some UI bugs on sandstormMaxime Quandalle2015-08-311-6/+6
|
* Fix a bug with board title editionMaxime Quandalle2015-08-291-2/+3
| | | | Fixes #250
* Hide feature non-member users can't useMaxime Quandalle2015-08-281-11/+10
| | | | | Fixes #206 Fixes #244
* Yet another iteration on the user interfaceMaxime Quandalle2015-08-281-4/+0
| | | | | | | | | | | | * Automatically display the overlay when the card details is opened (previously we waited for the mouse to enter the card details panel) * Improve the design of the minicards badges * Change the minicard background when it is hovered or selected * Removes unimplemented features links from the UI * Fix the board canvas position when the sidebar is open (was hidden behind) Fixes #215
* Implement board archive and restorationMaxime Quandalle2015-08-261-2/+2
|
* Fix the starsMaxime Quandalle2015-08-251-2/+2
| | | | Fixes #214
* Start the migration from iron-router to flow-routerMaxime Quandalle2015-08-231-6/+6
| | | | | | | | | | | | | | | | | | | Motivations: * Iron-Router foces us to use Tracker.nonreactive black magic in order to avoid un-necessary re-renders; * There is a community consensus (supported by some MDG members) that the flow-router API is easier to reason about; * The useraccounts now supports flow router (that was a blocking element when I considered the switch ~3months ago) On the server we use the Picker router, as encouraged by the Kadira team (which develop both Flow and Picker routers). In the current state of things there are some bugs related to the missing Loading architecure. Previously onRendered callback where always called when the data the component needed was available, now we have to handle this ourselves, which we will in a following commit.
* 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.