summaryrefslogtreecommitdiffstats
path: root/client/components/boards/boardBody.js
Commit message (Collapse)AuthorAgeFilesLines
* Fix #1567Andrés Manelli2018-04-161-6/+4
|
* Fix scroll board when opening cardDetailsAndrés Manelli2018-03-171-2/+2
|
* Fix drag and drop issues when re-enter boardAndrés Manelli2018-03-161-21/+82
|
* Fix order lists in lists viewAndrés Manelli2018-02-281-0/+3
|
* Allow toogle of lists and swimlanes viewsAndrés Manelli2018-01-221-0/+12
|
* First swimlane draft, no functionalityAndrés Manelli2018-01-191-146/+0
|
* Fix Drag Board To Scrollnztqa2017-06-061-1/+1
|
* cant see add list if comment onlyRyan Helsing2017-03-181-0/+6
|
* Fix undefined variables errorsMaxime Quandalle2016-07-211-2/+5
|
* Remove unnecessary template name declarationMaxime Quandalle2016-01-031-8/+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.
* Fix drag and drop on SandstormMaxime Quandalle2015-12-301-6/+8
| | | | | | | | | | | | | | This bug was introduced with the introduction of fast-render in 41b23f8. With fast-render data is available instantly after the page logging, but calls to `Meteor.userId()` still return `null` as the user isn't authenticated on the DDP channel yet (previously the data was loaded on DDP after user authentication). Which mean that we know need to reactively activate Drag and Drop on user log in. I'm not sure why I was not able to reproduce this bug outside of Sandstorm. Fixes #453
* add: support compact mode for mobile web, auto adapt to small screen/windowLiming Xie2015-12-171-0/+4
|
* bugfix: template. does not accept dom elements, but jquery canfloatinghotpot2015-11-271-3/+3
|
* Fix an exception introduced in 41b23f8Maxime Quandalle2015-11-011-1/+2
|
* Fix some bugs introduced in aa974aaMaxime Quandalle2015-10-291-2/+4
| | | | | Yes Wekan need some tests. Yes I need to stop refactoring my code when I’m halp-sleeping in my bed at 4am.
* Update packages and update Meteor to 1.2.1Maxime Quandalle2015-10-291-2/+2
| | | | Blaze-components had yet another methods rename.
* Upgrade Meteor to 1.2.1-rc4Maxime Quandalle2015-10-231-3/+3
| | | | | | This version includes a more complete selection of ES2015 polyfills that I started used across the code base, for instance by replacing `$.trim(str)` by `str.trim()`.
* Upgrade peerlibrary:blaze-components to v0.14Maxime Quandalle2015-10-211-2/+2
| | | | | This change includes method renames and others UI related packages updates.
* Fix text selection in the card detailed paneMaxime Quandalle2015-09-101-1/+7
| | | | Fixes #255.
* Enforce a consistent ES6 coding styleMaxime Quandalle2015-09-031-46/+46
| | | | | | | | | 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).
* Fix the horizontal canvas scrolling on card openingMaxime Quandalle2015-08-311-16/+8
|
* Improve the board subscriptionMaxime Quandalle2015-08-311-10/+16
| | | | Fixes #258
* Yet another iteration on the user interfaceMaxime Quandalle2015-08-281-7/+6
| | | | | | | | | | | | * 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 click-and-drag integration to translate the board canvasMaxime Quandalle2015-08-281-6/+38
| | | | Fixes #232
* Fix the board component data loadingMaxime Quandalle2015-08-231-70/+77
|
* Start the migration from iron-router to flow-routerMaxime Quandalle2015-08-231-4/+11
| | | | | | | | | | | | | | | | | | | 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.
* Improve card and list sortable dragMaxime Quandalle2015-06-171-1/+1
| | | | | | | | Use a custom build of jquery-ui with only the plugins we need (instead of including everything). Fix a tricky bug of conflict between Blaze reactive updates and jquery-ui (which caused cards to sometimes disappear).
* Work on the card activities and commentsMaxime Quandalle2015-06-121-10/+1
| | | | | | | | | 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.
* Improve the card details pane overlay interactionsMaxime Quandalle2015-06-061-0/+10
|
* Start designing the card details paneMaxime Quandalle2015-06-051-2/+6
| | | | Implement a dynamic overflow to focus sight on the pane.
* Implement multi-selectionMaxime Quandalle2015-05-301-6/+13
| | | | | | 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/+141
* 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.