Update jquery.ime to 839fa42

Changes:
* Fix bug T102455 in Punjabi.
* Add Akan language keyboard.

Bug: T102455
Change-Id: I144e1cde2bb2bc7fa38a7620ef621f7ec0a32285
This commit is contained in:
Amire80
2016-07-12 11:38:43 +03:00
committed by KartikMistry
parent 29cc89398a
commit 13a81d89f8
3 changed files with 36 additions and 4 deletions

View File

@@ -0,0 +1,24 @@
( function ( $ ) {
'use strict';
var defs = {
id: 'ak-qx',
name: 'Akan - QX replacement',
description: 'Akan input method with Q and X replaced by Ɛ and Ɔ',
date: '2016-06-23',
URL: 'http://www.kasahorow.org/node/260',
author: 'Amir E. Aharoni, based on Kasahorow',
license: 'GPLv3',
version: '1.0',
contextLength: 1,
maxKeyLength: 1,
patterns: [
[ 'Q', 'Ɛ' ],
[ 'q', 'ɛ' ],
[ 'X', 'Ɔ' ],
[ 'x', 'ɔ' ]
]
};
$.ime.register( defs );
}( jQuery ) );