Changeset 3689
- Timestamp:
- 07/03/07 01:36:47 (1 year ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/Plug-Ins/Web Interface/Resources/iphone/iphone.css
r3685 r3689 413 413 } 414 414 415 . message .emoticon samp {415 .emoticon samp { 416 416 font-weight: bold; 417 417 font-family: inherit; trunk/Plug-Ins/Web Interface/Resources/iphone/iphone.js
r3688 r3689 104 104 Colloquy.membersElement.style.display = null; 105 105 106 ChatController.activePanel.lastScrollPosition = ChatController.activePanel.panelTranscriptElement.scrollTop; 106 ChatController.activePanel.wasScrolledNearBottom = ChatController.activePanel.scrolledNearBottom(); 107 if (!ChatController.activePanel.wasScrolledNearBottom) 108 ChatController.activePanel.lastScrollPosition = ChatController.activePanel.panelTranscriptElement.scrollTop; 107 109 ChatController.activePanel.panelElement.style.display = null; 108 110 ChatController.activePanel.setKeyboardVisible(false); … … 370 372 Colloquy.membersElement.style.display = "block"; 371 373 372 this.panelTranscriptElement.scrollTop = this.lastScrollPosition; 374 if (this.wasScrolledNearBottom) 375 this.scrollToBottom(); 376 else this.panelTranscriptElement.scrollTop = this.lastScrollPosition; 373 377 374 378 Colloquy.colloquyTitleElement.textContent = this.name;
