summaryrefslogtreecommitdiffstats
path: root/client/components/boards/boardHeader.js
Commit message (Collapse)AuthorAgeFilesLines
* Import board: added UIXavier Priour2015-10-171-0/+1
|
* Fix Popup.afterCommitAlexander Sulfrian2015-09-201-1/+1
| | | | | | We need to use "function() {}" instead of the ES6 style "() {}" with popup.afterCommit because we need the original value of "this" inside the callback.
* Centralize all mutations at the model levelMaxime Quandalle2015-09-081-20/+11
| | | | | | | | | | | | | | | This commit uses a new package that I need to document. It tries to solve the long-standing debate in the Meteor community about allow/deny rules versus methods (RPC). This approach gives us both the centralized security rules of allow/deny and the white-list of allowed mutations similarly to Meteor methods. The idea to have static mutation descriptions is also inspired by Facebook's Relay/GraphQL. This will allow the development of a REST API using the high-level methods instead of the MongoDB queries to do the mapping between the HTTP requests and our collections.
* Fix a recurrent English typoMaxime Quandalle2015-09-061-2/+2
|
* Fix an issue with the star counterMaxime Quandalle2015-09-051-1/+1
|
* Enforce a consistent ES6 coding styleMaxime Quandalle2015-09-031-60/+60
| | | | | | | | | Replace the old (and broken) jshint + jscsrc by eslint and configure it to support some of the ES6 features. The command `eslint` currently has one error which is a bug that was discovered by its static analysis and should be fixed (usage of a dead object).
* Fixes some UI bugs on sandstormMaxime Quandalle2015-08-311-1/+1
|
* Implement board archive and restorationMaxime Quandalle2015-08-261-1/+8
|
* Fix the starsMaxime Quandalle2015-08-251-2/+2
| | | | Fixes #214
* Automatically star new boards created with the header shortcutMaxime Quandalle2015-06-091-0/+3
|
* Add a UI to restore archived cardsMaxime Quandalle2015-06-071-0/+4
|
* Restore the popup to add a member to the boardMaxime Quandalle2015-06-061-1/+1
|
* Implement multi-selectionMaxime Quandalle2015-05-301-4/+17
| | | | | | 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/+157
* 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.