summaryrefslogtreecommitdiffstats
path: root/client/components
Commit message (Collapse)AuthorAgeFilesLines
* Fix eslint testingMaxime Quandalle2016-07-211-2/+2
| | | | Partially reverting c8705a0
* Fix undefined variables errorsMaxime Quandalle2016-07-211-2/+5
|
* Fix bug where you get a "null" option in @-mention autocomplete (#649)Drew Fisher2016-07-211-2/+2
|
* Fix #573Maxime Quandalle2016-07-201-1/+3
|
* Implement a disconnected indicatorMaxime Quandalle2016-07-203-0/+25
| | | | Fixes #451
* Fix an event name from animationend to transitionendMaxime Quandalle2016-07-191-1/+1
| | | | Closes #646
* Merge PR #593 into develMaxime Quandalle2016-07-194-12/+11
|\
| * UI: Put every attachment action on its own lineAlexander Sulfrian2016-05-191-1/+1
| |
| * UI: Scale the attachemnt thumbnailsAlexander Sulfrian2016-05-191-2/+2
| | | | | | | | The attachements should be scaled inside the card, too.
| * UI: Center add-attachment linkAlexander Sulfrian2016-05-192-1/+6
| |
| * UI: Fix scaling of cover images (Fixes: #548)Alexander Sulfrian2016-04-252-8/+2
| | | | | | | | | | | | This reverts f039923ac134e4a3cc70a1a7d47c21460676b1c0 and fixes #196 in a different way (adding quotes). So that we can use the css background properties to scale the cover images.
* | Fix move to topAlexander Sulfrian2016-07-181-2/+2
| | | | | | | | | | If the minOrder is 0, the previous code does not work. This code is now doing the obvious stuff to change the order.
* | Merge #616 into develMaxime Quandalle2016-07-181-3/+1
|\ \
| * | Models: Replace before.insert with autoValuesAlexander Sulfrian2016-06-031-3/+1
| |/ | | | | | | | | | | | | | | The before.insert hooks have the problem, that they are executed in a different order if called from the client or from the server. If called from the client, the before.insert hook is called before validation of the schema, but if called from the server, the validation is called first and fails.
* | profile.name is called profile.fullname (#615)Alexander Sulfrian2016-07-112-3/+3
| | | | | | | | The name of the profile field was changed log ago. This fixes the remaining wrong references.
* | UI: Fix overlapping click event handler (#614)Alexander Sulfrian2016-07-111-9/+11
| | | | | | | | | | The click event handler for links in the card display are overlapping: The general event for opening the link in a new window matches on user mentions, too. But user mentions cannot be opened in a new window.
* | UI: Fix small bug with the multi-selection button (#591)Alexander Sulfrian2016-07-111-1/+1
|/ | | This bug was introduced in 081b09207f2247d7e38fc28e0f0f9748eecbbcbe.
* UI: Add missing title attributesAlexander Sulfrian2016-04-211-5/+6
| | | | | | | The buttons of the normal view should have the same title attribute, than the mini screen buttons. I missed this in 0587158b6be930f53325baa54fccadc54d18c9a3.
* UI: Add log-in button to public boardsAlexander Sulfrian2016-04-212-10/+23
| | | | | | | | | Even if a board is public and a user can view it, the user might want to log in to be able to edit the board. The button replaces the "public" permission indicator, because it is obvious (if the user is not logged in and can view the board, it has to be public).
* UI: Only display the options, if there is a boardAlexander Sulfrian2016-04-211-70/+72
| | | | | | The board options does not have valid use case (or even valid values) if the board is not found (either because the user is not logged in or the board really does not exists).
* UI: Do not display notification settingsAlexander Sulfrian2016-04-211-19/+21
| | | | | The notification settings are only usefull if there is a current user, because the email address is required.
* Some small fixes for the buttons in the board header (#580)Alexander Sulfrian2016-04-211-7/+8
| | | | | | | | | | | * UI: Fix title of button The multi selection button should not get the filter description. * UI: Add title for all buttons in the header bar This is espectially important for the miniScreen view, because there is only the icon and no text next to the button.
* UI: Center text in the avatars (#581)Alexander Sulfrian2016-04-211-1/+1
|
* Merge pull request #530 from ForNeVeR/feature/move-to-endMaxime Quandalle2016-03-192-0/+14
|\ | | | | Move cards to top / bottom
| * cardDetails: allow to move cards to top / bottomFriedrich von Never2016-03-192-0/+14
| |
* | Merge pull request #531 from TheElf/develMaxime Quandalle2016-03-181-2/+2
|\ \ | | | | | | Plural of Emoji
| * | Changes in code to correct the spelling of emoji (plural)Daniel2016-02-281-2/+2
| |/
* / Upgrade ESLint to v2Maxime Quandalle2016-03-173-13/+17
|/ | | | This commit also tweak the code style following backward-incompatible v2 rules.
* Fix a bug with the inheritance modelMaxime Quandalle2016-02-101-1/+1
| | | | See https://github.com/meteor/meteor/issues/6162
* Simplify an internal data model used in the importerMaxime Quandalle2016-01-312-15/+14
| | | | | We used to save the whole user document in a internal data structure while we only needed the userId.
* Change the board import layout from a popup to a full pageMaxime Quandalle2016-01-316-153/+157
| | | | | | | | This commit also removes the “import a single Trello card” as we couldn’t figure out some reasonable use case. We also create a new publication on the server to provide the minimal user profile informations required to display an avatar.
* Bugfix, and optimize icon for notificationfloatinghotpot2016-01-084-11/+11
|
* Merge pull request #454 from floatinghotpot/notificationMaxime Quandalle2016-01-0613-2/+178
|\ | | | | Add notifications, allow watch boards / lists / cards
| * Add notification, allow watch boards / lists / cardsLiming Xie2016-01-0513-2/+178
| |
* | 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-0316-92/+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 card infinite scrolling on card activitiesMaxime Quandalle2016-01-033-11/+8
| | | | | | | | I imagine blaze-component changed their Mixins API since I written this code. We need some tests to avoid this kind of regressions when updating dependencies! Fixes #420
* added exact time as tooltip to activity time (saying only something like 'x ↵Dominic Sonntag2016-01-031-3/+3
| | | | days ago')
* Fix layout on Apple devicesMaxime Quandalle2016-01-028-0/+16
| | | | | | | | | | | | | | | The layout issue was related to the lack of autoprexing for CSS properties. c69f993 did improve the reload time significantly but for that I had to replace `mquandalle:stylus` by the core `stylus` package. Unfortunatly it is currently difficult to run an autoprefixer with the core CSS compilers (as reported in https://github.com/meteor/meteor/issues/5219). So instead we rely on `nib` which transparently define some mixins for autoprefixing, the only restrictions being that we have to manually `@import 'nib'` on top of stylus files. Fixes #461
* change edit card title input to textarea for editing larger titlesalayek2016-01-012-4/+21
|
* Fix avatar support on SanstormMaxime Quandalle2015-12-301-2/+2
| | | | | | | | | | The bug comes for 9154b06 which this commit partially reverts. The synchronization between the user document profile and the Sandstorm HTTP headers is still not perfect. Having a clean model may requires the `accounts-sandstorm` to expose a hook to modify the user document just after the `services.sandstorm` credentials are updated. Fixes #460
* Fix drag and drop on SandstormMaxime Quandalle2015-12-303-13/+27
| | | | | | | | | | | | | | 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
* Forbid trailing spacesMaxime Quandalle2015-12-301-1/+1
|
* Optimize login form layout & cssfloatinghotpot2015-12-282-66/+71
| | | | Fixes #448
* Remove the import trello card featureMaxime Quandalle2015-12-222-2/+0
| | | | | | See the following discussion for rationale: https://github.com/wekan/wekan/issues/113#issuecomment-163039089
* Don't display sing-in link to connected usersMaxime Quandalle2015-12-211-2/+3
|
* Unassign members before removing them from a boardMaxime Quandalle2015-12-211-2/+5
| | | | Closes #399
* Improve some activitiy messagesMaxime Quandalle2015-12-191-5/+5
| | | | Fixes #433
* Fix home header barMaxime Quandalle2015-12-191-1/+1
| | | | | | | | | | The issue was introduced in 3b2eb0f but was only partially fixed (in urgency) in 71b9a42. We sould have test to avoid these trivial regressions! (I guess React will also yelp in this particular case by removing the need to link the template and the "component", and thus removing the possibility to break this link) Fixes #434
* Merge pull request #435 from xavierpriour/develMaxime Quandalle2015-12-182-0/+13
|\ | | | | | | | | Export a board to JSON Fixes #396