Update jquery.ime from upstream

* Add input methods for Dagbani and Bambara.

Update to:
d47a617f37

Change-Id: I7107dde813124b41b01d0e94eb4336b7379eb394
This commit is contained in:
Amire80
2017-05-29 22:29:41 +03:00
committed by KartikMistry
parent 411d7834d5
commit 9838760971
3 changed files with 77 additions and 1 deletions

View File

@@ -0,0 +1,28 @@
( function ( $ ) {
'use strict';
var dagAlt = {
id: 'dag-alt',
name: 'Dagbani Alt',
description: 'Dagbani Alt',
date: '2017-05-27',
URL: 'http://github.com/wikimedia/jquery.ime',
author: 'Amir E. Aharoni',
license: 'GPLv3',
version: '1.0',
patterns_x: [
[ 'E', 'Ɛ' ],
[ 'e', 'ɛ' ],
[ 'G', 'Ɣ' ],
[ 'g', 'ɣ' ],
[ 'N', 'Ŋ' ],
[ 'n', 'ŋ' ],
[ 'O', 'Ɔ' ],
[ 'o', 'ɔ' ],
[ 'Z', 'Ʒ' ],
[ 'z', 'ʒ' ]
]
};
$.ime.register( dagAlt );
}( jQuery ) );