summaryrefslogtreecommitdiffstats
path: root/client/components/boards/boardBody.jade
Commit message (Collapse)AuthorAgeFilesLines
* Add siwmlane button. Allow card drop between swimlanesAndrés Manelli2018-01-191-16/+0
|
* First swimlane draft, no functionalityAndrés Manelli2018-01-191-16/+4
|
* Optimize for mobile web, show single list per page with navigate barnztqa2017-11-291-6/+15
|
* cant see add list if comment onlyRyan Helsing2017-03-181-1/+1
|
* add: support compact mode for mobile web, auto adapt to small screen/windowLiming Xie2015-12-171-1/+4
|
* Improve list title formMaxime Quandalle2015-09-021-10/+11
|
* Update translation source fileMaxime Quandalle2015-09-011-1/+1
|
* Yet another iteration on the user interfaceMaxime Quandalle2015-08-281-2/+2
| | | | | | | | | | | | * 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-0/+1
|
* Fix the board component data loadingMaxime Quandalle2015-08-231-16/+19
|
* Start the migration from iron-router to flow-routerMaxime Quandalle2015-08-231-24/+20
| | | | | | | | | | | | | | | | | | | 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.
* Start designing the card details paneMaxime Quandalle2015-06-051-3/+5
| | | | Implement a dynamic overflow to focus sight on the pane.
* Dissable temporarily the cache value of inlinedFormMaxime Quandalle2015-06-041-1/+1
| | | | | Due to bug https://github.com/peerlibrary/meteor-blaze-components/issues/50
* Implement multi-selectionMaxime Quandalle2015-05-301-1/+4
| | | | | | 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/+34
* 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.