Changeset 5686
- Timestamp:
- 02/26/08 15:54:01 (9 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
spinelz/trunk/compress/javascripts/spinelz/calendar.js
r5680 r5686 2183 2183 var _2dc=this.map(this.startHeight+_2db); 2184 2184 if(_2dc>this.options.minHeight){ 2185 _2da.height= _2dc+"px";2185 _2da.height=(_2dc-4)+"px"; 2186 2186 _2da.top=this.map(this.startTop-_2db)+"px"; 2187 2187 } … … 2204 2204 var _2dc=this.map(this.startHeight+_2d9[1]-this.startY); 2205 2205 if(_2dc>this.options.minHeight){ 2206 _2da.height= _2dc+"px";2206 _2da.height=(_2dc-4)+"px"; 2207 2207 } 2208 2208 } spinelz/trunk/compress/javascripts/spinelz/spinelz_for_rubricks.js
r5680 r5686 2493 2493 var _2dc=this.map(this.startHeight+_2db); 2494 2494 if(_2dc>this.options.minHeight){ 2495 _2da.height= _2dc+"px";2495 _2da.height=(_2dc-4)+"px"; 2496 2496 _2da.top=this.map(this.startTop-_2db)+"px"; 2497 2497 } … … 2514 2514 var _2dc=this.map(this.startHeight+_2d9[1]-this.startY); 2515 2515 if(_2dc>this.options.minHeight){ 2516 _2da.height= _2dc+"px";2516 _2da.height=(_2dc-4)+"px"; 2517 2517 } 2518 2518 } spinelz/trunk/src/javascripts/spinelz/calendar.js
r5680 r5686 3030 3030 var newHeight = this.map(this.startHeight + pointerMoved); 3031 3031 if (newHeight > this.options.minHeight) { 3032 style.height = newHeight+ "px";3032 style.height = (newHeight - 4) + "px"; 3033 3033 style.top = this.map(this.startTop - pointerMoved) + "px"; 3034 3034 } … … 3049 3049 var newHeight = this.map(this.startHeight + pointer[1] - this.startY); 3050 3050 if (newHeight > this.options.minHeight) { 3051 style.height = newHeight+ "px";3051 style.height = (newHeight - 4) + "px"; 3052 3052 // style.top = this.startTop + "px"; 3053 3053 }
