summaryrefslogtreecommitdiffstats
path: root/client/components/lists
diff options
context:
space:
mode:
authorMaxime Quandalle <maxime@quandalle.com>2015-10-23 16:56:55 +0200
committerMaxime Quandalle <maxime@quandalle.com>2015-10-23 16:56:55 +0200
commit31b60d82fcae64a844805a2a76a0af25fb9c16c2 (patch)
treea82d7d6e6097f67215406ea47a11671292a4dc7b /client/components/lists
parentb3696e1e3b366770af8c41861b5cf996cdd2378a (diff)
downloadwekan-31b60d82fcae64a844805a2a76a0af25fb9c16c2.tar.gz
wekan-31b60d82fcae64a844805a2a76a0af25fb9c16c2.tar.bz2
wekan-31b60d82fcae64a844805a2a76a0af25fb9c16c2.zip
Upgrade Meteor to 1.2.1-rc4
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()`.
Diffstat (limited to 'client/components/lists')
-rw-r--r--client/components/lists/listBody.js6
-rw-r--r--client/components/lists/listHeader.js6
2 files changed, 6 insertions, 6 deletions
diff --git a/client/components/lists/listBody.js b/client/components/lists/listBody.js
index 88b31788..25aeffcc 100644
--- a/client/components/lists/listBody.js
+++ b/client/components/lists/listBody.js
@@ -12,7 +12,7 @@ BlazeComponent.extendComponent({
options.position = options.position || 'top';
const forms = this.childrenComponents('inlinedForm');
- let form = _.find(forms, (component) => {
+ let form = forms.find((component) => {
return component.data().position === options.position;
});
if (!form && forms.length > 0) {
@@ -26,7 +26,7 @@ BlazeComponent.extendComponent({
const firstCardDom = this.find('.js-minicard:first');
const lastCardDom = this.find('.js-minicard:last');
const textarea = $(evt.currentTarget).find('textarea');
- const title = textarea.val();
+ const title = textarea.val().trim();
const position = this.currentData().position;
let sortIndex;
if (position === 'top') {
@@ -35,7 +35,7 @@ BlazeComponent.extendComponent({
sortIndex = Utils.calculateIndex(lastCardDom, null).base;
}
- if ($.trim(title)) {
+ if (title) {
const _id = Cards.insert({
title,
listId: this.data()._id,
diff --git a/client/components/lists/listHeader.js b/client/components/lists/listHeader.js
index b5df2c81..ab547f02 100644
--- a/client/components/lists/listHeader.js
+++ b/client/components/lists/listHeader.js
@@ -6,9 +6,9 @@ BlazeComponent.extendComponent({
editTitle(evt) {
evt.preventDefault();
const newTitle = this.childrenComponents('inlinedForm')[0].getValue();
- const list = this.currentData();
- if ($.trim(newTitle)) {
- list.rename(newTitle);
+ const list = this.currentData().trim();
+ if (newTitle) {
+ list.rename(newTitle.trim());
}
},