From d1d54192560f6ee13c586ca6dc077aa5eb0e5908 Mon Sep 17 00:00:00 2001 From: Adam Shaw Date: Sun, 21 Feb 2010 18:06:32 -0800 Subject: [PATCH] fixed event dragging overlay z-index problem in IE --- src/agenda.js | 4 ++-- src/grid.js | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/agenda.js b/src/agenda.js index ce06b05..0570ff9 100644 --- a/src/agenda.js +++ b/src/agenda.js @@ -181,7 +181,7 @@ function Agenda(element, options, methods) { head.find('td').click(slotClick); // all-day event container - daySegmentContainer = $("
").appendTo(head); + daySegmentContainer = $("
").appendTo(head); // body d = zeroDate(); @@ -206,7 +206,7 @@ function Agenda(element, options, methods) { body.find('td').click(slotClick); // slot event container - slotSegmentContainer = $("
").appendTo(bodyContent); + slotSegmentContainer = $("
").appendTo(bodyContent); // background stripes d = cloneDate(d0); diff --git a/src/grid.js b/src/grid.js index 28bd0c8..f30d02e 100644 --- a/src/grid.js +++ b/src/grid.js @@ -211,7 +211,7 @@ function Grid(element, options, methods) { tbody = $(s + "").appendTo(table); tbody.find('td').click(dayClick); - segmentContainer = $("
").appendTo(element); + segmentContainer = $("
").appendTo(element); }else{ // NOT first time, reuse as many cells as possible