Changeset 5748

Show
Ignore:
Timestamp:
04/12/08 02:37:25 (9 months ago)
Author:
jparker
Message:

#877

  • 아이폰/터치폰 상에서 폼 전송후 남아있는 키패드 닫히도록 처리.
    • submit후 특정 오브젝트를 포커싱하여 속이는 방법뿐.--;
Location:
trunk
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • trunk/interface/i/index.php

    r5746 r5748  
    1212        <h1 id="pageTitle"><?php echo htmlspecialchars(User::getName($blogid));?> Blog</h1> 
    1313        <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> 
    1515    </div> 
    1616    <ul id="home" title="<?php echo htmlspecialchars(User::getName($blogid));?> Blog" selected="true"> 
  • trunk/script/iphone/iphone.js

    r5658 r5748  
    329329{ 
    330330    iui.showPageByHref(form.action || "POST", encodeForm(form), form.method); 
     331    closeKeypad(); 
    331332} 
    332333 
     
    439440    } 
    440441} 
     442 
     443function closeKeypad(){ 
     444    var searchButton = document.getElementById("searchButton"); 
     445    if (searchButton != null){ 
     446        searchButton.focus(); 
     447    }  
     448}