Changeset 5748
- Timestamp:
- 04/12/08 02:37:25 (9 months ago)
- Location:
- trunk
- Files:
-
- 2 modified
-
interface/i/index.php (modified) (1 diff)
-
script/iphone/iphone.js (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/interface/i/index.php
r5746 r5748 12 12 <h1 id="pageTitle"><?php echo htmlspecialchars(User::getName($blogid));?> Blog</h1> 13 13 <a id="backButton" class="button" href="#"></a> 14 <a class="button" href="#searchForm" onclick="searchAction(true);">Search</a>14 <a class="button" href="#searchForm" id="searchButton" onclick="searchAction(true);">Search</a> 15 15 </div> 16 16 <ul id="home" title="<?php echo htmlspecialchars(User::getName($blogid));?> Blog" selected="true"> -
trunk/script/iphone/iphone.js
r5658 r5748 329 329 { 330 330 iui.showPageByHref(form.action || "POST", encodeForm(form), form.method); 331 closeKeypad(); 331 332 } 332 333 … … 439 440 } 440 441 } 442 443 function closeKeypad(){ 444 var searchButton = document.getElementById("searchButton"); 445 if (searchButton != null){ 446 searchButton.focus(); 447 } 448 }
