fix IE7 z-index bugs in taskboard when dragging issues

pull/6827/head
jwollert 14 years ago
parent 8986df08ca
commit 89985db603
  1. 5
      assets/javascripts/app/taskboard.js

@ -81,6 +81,11 @@ RB.Taskboard = (function ($) {
dragStop: function (e, ui) {
ui.item.removeClass("dragging");
// FIXME: workaround for IE7
if ($.browser.msie && $.browser.version <= 7) {
ui.item.css("z-index", 0);
}
},
handleAddNewImpedimentClick: function (e) {

Loading…
Cancel
Save