| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
Thanks to schulz !
|
|
|
|
| |
Thanks to xet7 ! Closes #1248, closes #323
|
| |
|
|
|
|
| |
Thanks to xet7 ! Opens #1248, opens #743, opens #643, opens #323
|
|
|
|
| |
Thanks to xet7 ! Closes #1248, closes #743, closes #643, closes #323
|
| |
|
|
|
|
| |
Partially reverting c8705a0
|
| |
|
| |
|
|
|
|
|
| |
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.
|
|\
| |
| | |
Plural of Emoji
|
| | |
|
|/
|
|
| |
This commit also tweak the code style following backward-incompatible v2 rules.
|
| |
|
|
|
|
|
|
| |
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()`.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
|
| |
We now can re-use this integration in multiple places, this will be
useful for #342 for instance.
|
|
|
|
|
|
|
|
|
|
| |
This commit fixes the download link in the activity feed on the
sidebar and the mention link on card description and comments
(replaced by a popup).
`eslint .` now passes without any error or warning.
Fixes #286
|
|
|
|
|
|
|
|
|
| |
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 #261
|
| |
|
|
|
|
|
|
| |
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.
|
| |
|
|
The new EscapeActions object decide what to do when the user press the
Escape key (such as closing a opened popup or inlined form).
This commit also re-introduced the sidebar current view as a sidebar
component local state.
|