Changeset 3779
- Timestamp:
- 03/09/08 01:07:13 (9 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/Plug-Ins/Web Interface/Resources/iphone/iphone.css
r3697 r3779 141 141 } 142 142 143 body.keyboard-visible #main > .header { 144 top: 216px; 145 } 146 147 body.keyboard-visible .colloquy-panel { 148 top: 260px; 149 height: 156px; 150 } 151 143 152 .colloquy-panel-transcript { 144 153 background-color: white; 145 154 height: 335px; 146 155 overflow: auto; 156 } 157 158 body.keyboard-visible .colloquy-panel-transcript { 159 height: 119px; 147 160 } 148 161 … … 185 198 left: 0; 186 199 width: 100%; 187 height: 41 7px;200 height: 416px; 188 201 background-color: white; 189 202 display: none; trunk/Plug-Ins/Web Interface/Resources/iphone/iphone.js
r3706 r3779 143 143 Colloquy.mainTitleElement.style.display = null; 144 144 145 ChatController.activePanel.setKeyboardVisible(false); 146 145 147 var animations = [{element: this.backElement, end: {left: document.body.offsetWidth / 4, opacity: 0}}, 146 148 {element: this.joinElement, end: {opacity: 1}}, {element: this.membersElement, end: {opacity: 0}}, … … 159 161 ChatController.activePanel.lastScrollPosition = ChatController.activePanel.panelTranscriptElement.scrollTop; 160 162 ChatController.activePanel.panelElement.style.display = null; 161 ChatController.activePanel.setKeyboardVisible(false);162 163 ChatController.activePanel.active = false; 163 164 … … 537 538 538 539 if(visible) { 539 this.panelTranscriptElement.style.height = "119px";540 document.body.addStyleClass("keyboard-visible"); 540 541 541 542 this.panelInputElement.focus(); … … 545 546 this.panelInputElement.selectionEnd = valueLength; 546 547 } else { 547 this.panelTranscriptElement.style.height = null;548 document.body.removeStyleClass("keyboard-visible"); 548 549 } 549 550
