diff options
author | Maxime Quandalle <maxime@quandalle.com> | 2015-05-28 17:22:24 +0200 |
---|---|---|
committer | Maxime Quandalle <maxime@quandalle.com> | 2015-05-28 17:22:24 +0200 |
commit | 6457615e6ac6717d2175be9483388d4d70ea1c4a (patch) | |
tree | 82669db5de2e7d04a03bf0952b4a087bc48930aa /client | |
parent | dcc64f44f9f81d32c8071c6bdac86546eaeb57a0 (diff) | |
download | wekan-6457615e6ac6717d2175be9483388d4d70ea1c4a.tar.gz wekan-6457615e6ac6717d2175be9483388d4d70ea1c4a.tar.bz2 wekan-6457615e6ac6717d2175be9483388d4d70ea1c4a.zip |
Fix card placeholder size on firefox
Diffstat (limited to 'client')
-rw-r--r-- | client/components/lists/main.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/components/lists/main.js b/client/components/lists/main.js index 8f86183a..beae784d 100644 --- a/client/components/lists/main.js +++ b/client/components/lists/main.js @@ -39,7 +39,7 @@ BlazeComponent.extendComponent({ items: itemsSelector, placeholder: 'minicard placeholder', start: function(event, ui) { - $('.minicard.placeholder').height(ui.item.height()); + ui.placeholder.height(ui.helper.height()); Popup.close(); boardComponent.showNewCardForms(false); }, |