Browse Source

Fix card placeholder size on firefox

Maxime Quandalle 10 years ago
parent
commit
6457615e6a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      client/components/lists/main.js

+ 1 - 1
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);
       },