CKEditor does not focus on iOS when tapping in text area

ckeditor, ios6, ipad, iphone, mobile-safari

Solution

Adding `height:100%;` to `HTML` and `BODY` elements in editor-test.css will fix this issue. Final code will be like this:

html {height:100%;}
body {
    font-family: "lucida grande",tahoma,verdana,arial,sans-serif;
    font-size: 12px; 
    line-height:1.4em;
    color: #333; 
    height:100%;
}

Problem

CKEditor 4.0.1 is failing to focus when tapping in the text area on iOS 6.1 Safari. This happens both on the iphone and ipad (both running iOS 6.1). I can eventually get it to focus by tapping it several times. Sometimes it takes 5 taps, sometimes it takes 10 or 15. If I click the bold button, it focuses right away. Any ideas? Is there a way for me to manually capture the tap event and then call something that will focus the editor? I'm using jquery.

Original source