Change | inputs absolute when selected | only switch between visible fields (prev/next) | unable to scroll down to third field when kb on | page scrolled down when deselect kb | unable to hide kb |
---|---|---|---|---|---|
orig | OK | ? | |||
scrolling="no" on panel | OK | OK | |||
remove "panel" class on panel | |||||
change input type="password" | OK | OK | ? | ||
remove position absolute | OK | OK | ? |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Define a grammar called Hello | |
grammar Hello; | |
r : 'hello' ID ; // match keyword hello followed by an identifier | |
ID : [a-z]+ ; // match lower-case identifiers | |
WS : [ \t\r\n]+ -> skip ; // skip spaces, tabs, newlines |
First download the source of espeak and unzip it in this directory: ~/Downloads/espeak-1.48.04-source/src
sudo add-apt-repository "deb http://archive.ubuntu.com/ubuntu $(lsb_release -sc) main universe"
sudo apt-get update
sudo apt-get install build-essential
sudo apt-get install libportaudio-dev
sudo apt-get install portaudio19-dev
cd ~/Downloads/espeak-1.48.04-source/src
cp portaudio19.h portaudio.h