summaryrefslogtreecommitdiffstats
path: root/client/components/boards/boardHeader.js
Commit message (Collapse)AuthorAgeFilesLines
...
| * Add notification, allow watch boards / lists / cardsLiming Xie2016-01-051-0/+28
| |
* | Favor FlowRouter.url over Meteor.absoluteUrlMaxime Quandalle2016-01-051-1/+1
|/ | | | | It hides the leading slash treatment as an hidden implementation detail.
* Remove unnecessary template name declarationMaxime Quandalle2016-01-031-16/+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.
* Merge pull request #435 from xavierpriour/develMaxime Quandalle2015-12-181-0/+12
|\ | | | | | | | | Export a board to JSON Fixes #396
| * Export: improved API routesXavier Priour2015-12-171-2/+1
| | | | | | | | | | | | - use an explicit "boards" domain: /api/boards/:boardId - pass authToken as a request parameter: /api/boards/:boardId?authToken=:token - in the future, same route can be used with authToken set in the Authenticate: header easily
| * Export Wekan now server-based with proper authXavier Priour2015-12-161-17/+9
| |
| * fix eslintXavier Priour2015-12-131-1/+2
| |
| * Merge remote-tracking branch 'upstream/devel' into develXavier Priour2015-12-131-2/+2
| |\
| * | board export now checks authenticationXavier Priour2015-12-131-0/+14
| | |
| * | export board to Wekan JSONXavier Priour2015-12-091-0/+6
| | |
* | | fix board headeer issuefloatinghotpot2015-12-171-0/+4
| |/ |/|
* | Fix a regression introduced in 71b9a42fMaxime Quandalle2015-12-091-2/+2
|/ | | | The buttons in the board header were not click-able anymore.
* add: optional board descriptionfloatinghotpot2015-12-071-0/+2
|
* 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.