Changeset 20531
- Timestamp:
- 03/05/10 07:42:29 (5 months ago)
- Files:
-
- trunk/core/web/src/ScheduleMain.js (modified) (1 diff)
- trunk/core/web/src/workplanResizer.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/core/web/src/ScheduleMain.js
r20515 r20531 1589 1589 //On scroll start remove all editor from task panel because in IE calendar fields not scroll with the row. 1590 1590 function onScrollStart(){ 1591 if(currentCellObject) 1591 if(currentCellObject){ 1592 1592 currentCellObject.innerHTML = displayedValue; 1593 currentCellObject.style.padding = '3px 3px 3px 5px'; 1594 } 1593 1595 } 1594 1596 trunk/core/web/src/workplanResizer.js
r20231 r20531 42 42 var newWidth = parseInt(curWidth + pixelMovement); 43 43 //Enforce a minimum width. 44 if(newWidth < 60) newWidth = 60; ;45 if(newWidth > (windowWidth - 30 3)) newWidth = (windowWidth - 303);44 if(newWidth < 60) newWidth = 60; 45 if(newWidth > (windowWidth - 306)) newWidth = (windowWidth - 306); 46 46 taskListPanelWidth = newWidth; 47 47 document.getElementById("splitterBarShadow").style.left = (newWidth + 1) + "px";
