https://github.com/mdminhazulhaque/probhat.im
🌐 Online Probhat Keyboard
https://github.com/mdminhazulhaque/probhat.im
avro bangla im probhat
Last synced: 7 months ago
JSON representation
🌐 Online Probhat Keyboard
- Host: GitHub
- URL: https://github.com/mdminhazulhaque/probhat.im
- Owner: mdminhazulhaque
- Created: 2016-07-09T01:54:47.000Z (over 9 years ago)
- Default Branch: gh-pages
- Last Pushed: 2023-10-18T21:31:53.000Z (almost 2 years ago)
- Last Synced: 2025-01-14T04:11:28.862Z (9 months ago)
- Topics: avro, bangla, im, probhat
- Language: HTML
- Homepage: https://probhat.mdminhazulhaque.io/
- Size: 239 KB
- Stars: 13
- Watchers: 4
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# probhat.im
:globe_with_meridians: Online Probhat Keyboard
## jQuery.IME
jQuery.IME is a jQuery based input method editor library supporting more than 135 input methods across more than 62 languages.
These input methods are well tested. Initially the input methods were contributed by the Wikimedia community. By now many input methods have also been contributed by Red Hat.
This project is a Wikimedia foundation initiative to provide language technology tools to a wider audience outside the Wikimedia universe.
This input tool is widely deployed in all Wikimedia projects (eg: wikipedia).
https://github.com/wikimedia/jquery.ime
## TODO
- [x] Support mobile browser
- [x] Remove bootstrap.css
- [ ] Add FAQ pages
- [ ] Multiple notepad
- [ ] Save text to local storage
- [ ] Warn user when hitting Ctrl+W## nginx
```
server {
listen 80;
server_name probhat.im www.probhat.im;root /www/probhat;
index index.html;location / {
try_files $uri $uri/ /index.html;
}
location /app.cache {
add_header Content-Type "text/cache-manifest";
}
location ~ /\.git {
deny all;
}
}
```