summaryrefslogtreecommitdiffstats
path: root/client/components/cards
Commit message (Collapse)AuthorAgeFilesLines
* cardDetails: allow to move cards to top / bottomFriedrich von Never2016-03-192-0/+14
|
* Fix a bug with the inheritance modelMaxime Quandalle2016-02-101-1/+1
| | | | See https://github.com/meteor/meteor/issues/6162
* Add notification, allow watch boards / lists / cardsLiming Xie2016-01-053-0/+28
|
* Remove unnecessary template name declarationMaxime Quandalle2016-01-032-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 card infinite scrolling on card activitiesMaxime Quandalle2016-01-031-2/+6
| | | | | | | | 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
* Fix layout on Apple devicesMaxime Quandalle2016-01-022-0/+4
| | | | | | | | | | | | | | | 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
|
* Forbid trailing spacesMaxime Quandalle2015-12-301-1/+1
|
* add: support compact mode for mobile web, auto adapt to small screen/windowLiming Xie2015-12-174-2/+28
|
* Dynamically resize the new card form if the title is too longMaxime Quandalle2015-12-091-1/+2
|
* bugfix: only care active members, also optimize some codefloatinghotpot2015-12-081-1/+1
|
* Enphasize keyboard shortcuts with a dedicated styleMaxime Quandalle2015-11-251-1/+1
| | | | | | Also add release notes related to the #387 merge. -- Fluctuat nec mergitur
* Merge GitHub PR #387Maxime Quandalle2015-11-153-2/+100
|\
| * add preview attached image, allow upload image from clipboard and drag & drpfloatinghotpot2015-11-133-2/+100
| |
* | Finish the minicard editor auto-completion featureMaxime Quandalle2015-11-081-1/+1
|/ | | | | | | | | | | This commit stands on the initial support implemented in #342. We now avoid error-prone parsing step by adding the member or the label directly to the card object. We also added support for `Tab` to completion on our textComplete component. Closes #342
* 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()`.
* Prefer ES5 methods over underscore utilitiesMaxime Quandalle2015-10-222-3/+4
| | | | | | | | | | | | | | Since 07cc454 (ie the switch to Meteor 1.2) we includes the `es5-shim` polyfill to support methods like `Array.prototype.forEach` in a consistent way across all supported browsers (IE8+). MDG recently released a blog post recommending the use of these native methods instead of underscore [0]. We know follow this recommendation. This commit also favor some ES6 features (argument defaults, destructing assignment) in places where we didn’t use them. [0]: http://info.meteor.com/blog/es2015-get-started
* Upgrade peerlibrary:blaze-components to v0.14Maxime Quandalle2015-10-211-7/+7
| | | | | This change includes method renames and others UI related packages updates.
* Re-implement label deletionMaxime Quandalle2015-10-201-1/+1
| | | | | | This was not ported during v0.9 re-factor. Fixes #322
* Prevent dublicated empty labels of the same colorMaxime Quandalle2015-10-141-1/+1
|
* Fix a typo in a function call introduced in a78debcMaxime Quandalle2015-10-131-1/+1
|
* Support app deployment under a path prefixMaxime Quandalle2015-10-082-2/+2
| | | | Fixes #133
* Fix Popup.afterCommitAlexander Sulfrian2015-09-202-3/+3
| | | | | | We need to use "function() {}" instead of the ES6 style "() {}" with popup.afterCommit because we need the original value of "this" inside the callback.
* Merge branch 'master' into develMaxime Quandalle2015-09-101-0/+3
|\
| * Fix the draft saving feature on card switchingMaxime Quandalle2015-09-101-0/+3
| |
* | Centralize all mutations at the model levelMaxime Quandalle2015-09-083-65/+15
|/ | | | | | | | | | | | | | | 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.
* Hide some disabled forms for anonymous board viewersMaxime Quandalle2015-09-062-16/+20
| | | | | | Fixes #288 Fixes #289 Fixes #290
* Fix member permission modificationMaxime Quandalle2015-09-051-1/+1
| | | | Fixes #280
* Enforce a consistent ES6 coding styleMaxime Quandalle2015-09-034-122/+122
| | | | | | | | | 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 attachments downloadingMaxime Quandalle2015-09-022-4/+7
| | | | | Fixes #219 Fixes #256
* Re-enable attachments on sandstormMaxime Quandalle2015-09-011-2/+1
| | | | | Credits go to @dwrensha who implement the required MongoDB upgrade on meteor-spk.
* Update translation source fileMaxime Quandalle2015-09-011-14/+17
|
* Fix the horizontal canvas scrolling on card openingMaxime Quandalle2015-08-311-5/+25
|
* Temporarily hide the attachment feature on sandstormMaxime Quandalle2015-08-311-1/+2
| | | | | | | | | | Our spk currently have an issue with the bundled MongoDB (forked) version that breaks if some files are inserted in a GridFS collection. We need to find out a way to upgrade and migrate the bundled database until we can re-enable the attachment feature. Note that the feature is unmodified, it's just hidden in the UI.
* Don't save a draft if the card description hasn't been modifiedMaxime Quandalle2015-08-311-1/+4
|
* Replace the component bounded `cachedValue` by a global `UnsavedEdits`Maxime Quandalle2015-08-312-7/+40
| | | | | | | | This new draft saving system is currently only implemented for the card description and comment. We need better a component inheritance/composition model to support this for all editable fields. Fixes #186
* Fix property passing in the userAvatar componentMaxime Quandalle2015-08-301-1/+2
| | | | Fixes #257
* Redesign the card design header and change header menu iconMaxime Quandalle2015-08-304-27/+20
|
* Hide feature non-member users can't useMaxime Quandalle2015-08-281-10/+7
| | | | | Fixes #206 Fixes #244
* Fix label alignement on SafariMaxime Quandalle2015-08-281-0/+2
| | | | | | | | | Safari infer different values for the `vertical-align` property of `inline-block` element. See this answer for more details: http://stackoverflow.com/a/4828136/1652064 Fixes #177
* Yet another iteration on the user interfaceMaxime Quandalle2015-08-284-16/+33
| | | | | | | | | | | | * 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
* More explicit file namesMaxime Quandalle2015-08-283-0/+0
|
* Display keyboard shortcuts on a modalMaxime Quandalle2015-08-281-1/+1
| | | | Fixes #241
* Fix EscapeActions click in handlingMaxime Quandalle2015-08-251-1/+1
| | | | Fixes a bug introduced in 07cc454 and one introduced in 22e854c.
* Upgrade meteor to 1.2-rc.4 and package versionsMaxime Quandalle2015-08-251-5/+4
| | | | | | | | | | | | The new version of meteor speeds up the reload cycle, which is super valuable during the development. I also removed the "imply-everything" "meteor-platform" package in favor of a more fined-grained package selection. This version also introduces ES6 support with transparent babeljs transpilation. Most features are enable (with the notable exception of ES6 modules) and this commit started to use them in places where a XXX comment suggested it.
* Switch the font to robotoMaxime Quandalle2015-08-203-13/+8
|
* profile name changed fullname and comma hotfix.Yasar icli2015-07-181-1/+1
|
* Allow a user to edit its profile or avatar from a member popoverMaxime Quandalle2015-06-192-3/+3
| | | | | | | Fixes the data context on the member popover in the details pane. Also change the way Popover detect if the click is initiated from a parent popover -- from reading Blaze context, to looking at the event target parents.
* Improve card and list sortable dragMaxime Quandalle2015-06-171-0/+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).
* Fix #196Maxime Quandalle2015-06-162-10/+6
|