summaryrefslogtreecommitdiffstats
path: root/client/components/cards/attachments.js
Commit message (Collapse)AuthorAgeFilesLines
* Fix prettier.Lauri Ojansivu2019-10-091-1/+1
|
* Update attachments.jsbenji2019-10-091-0/+2
| | | | added else condition to check if MAX_IMAGE_PIXEL is not set, so that it is possible to upload attachments using drag-and-drop or Ctrl+V without setting the environmental-variable. If this change is not allowed, please document in the wiki, that this is necessary for a fully-running wekan-instance
* Add Feature: Richer Editor insert picture as attachment instead of b64 stringSam X. Chen2019-08-101-21/+6
|
* Add Features: allowing wekan master to set where the attachments stored on ↵Sam X. Chen2019-08-081-0/+3
| | | | server instead of mongodb
* Bug fix: bug#2589 #2575, Add Features: allowing user to insert/paste link, ↵Sam X. Chen2019-08-071-54/+4
| | | | image, video
* Add Feature: allow to shrink attached/pasted image if server has ↵Sam X. Chen2019-07-151-12/+113
| | | | correponding settings
* Prettier & eslint project style updateJustin Reynolds2019-06-281-20/+19
|
* Fix Attachment Outgoing Webhook missing list and swimlane name.Lauri Ojansivu2019-06-261-0/+2
| | | | | | | Thanks to xet7 ! Related #1969, Closes #2170
* Refactor imported -> linked in componentsAndrés Manelli2018-08-111-3/+3
|
* Add two way binding of activities, comments, and attachmentsAndrés Manelli2018-08-111-2/+7
|
* Update - auto update card cover with new image uploaded via drag&dropThuan Pham Quoc2017-12-181-1/+6
|
* Added - auto update card cover with latest uploaded image attachment of cardThuan Pham Quoc2017-12-091-1/+7
|
* Added swipebox package and added it to attachement imagesBrooks Becton2017-10-281-3/+0
| | | | Also removed '.js-open-viewer' and it's styling stub
* Assign user to attachment before insertingGhassen Rjab2017-08-311-1/+2
|
* Forbid trailing spacesMaxime Quandalle2015-12-301-1/+1
|
* add preview attached image, allow upload image from clipboard and drag & drpfloatinghotpot2015-11-131-1/+78
|
* 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-2/+2
| | | | | | | | | | | | | | | 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.
* Enforce a consistent ES6 coding styleMaxime Quandalle2015-09-031-12/+12
| | | | | | | | | 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-021-3/+6
| | | | | Fixes #219 Fixes #256
* Fix card attachmentsMaxime Quandalle2015-06-131-0/+38
Closes #192.