summaryrefslogtreecommitdiffstats
path: root/client/components/cards/details.js
diff options
context:
space:
mode:
Diffstat (limited to 'client/components/cards/details.js')
-rw-r--r--client/components/cards/details.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/client/components/cards/details.js b/client/components/cards/details.js
index a4fe89a3..cb1a3ef3 100644
--- a/client/components/cards/details.js
+++ b/client/components/cards/details.js
@@ -53,7 +53,7 @@ BlazeComponent.extendComponent({
event.preventDefault();
},
- 'click .js-cancel-edit': function(event, t) {
+ 'click .js-cancel-edit': function() {
// remove editing hide.
$('.editing').removeClass('editing');
},
@@ -64,8 +64,8 @@ BlazeComponent.extendComponent({
$set: {
title: title
}
- }, function (err, res) {
- if (!err) $('.editing').removeClass('editing');
+ }, function(err) {
+ if (! err) $('.editing').removeClass('editing');
});
}
@@ -77,7 +77,7 @@ BlazeComponent.extendComponent({
description: t.find('#desc').value
}
}, function(err) {
- if (!err) $('.editing').removeClass('editing');
+ if (! err) $('.editing').removeClass('editing');
});
event.preventDefault();
},