Update jquery.ime from upstream

* UI improvements, fixes
* More input methods
* Misc functionality fixes

Change-Id: I1a516027e9654a498e4e87c83f8d72ad24eb5596
This commit is contained in:
Santhosh Thottingal
2012-11-19 10:57:32 +05:30
committed by Gerrit Code Review
parent e3e0be19f2
commit f8947b9686
20 changed files with 1282 additions and 37 deletions

View File

@@ -0,0 +1,39 @@
( function ( $ ) {
'use strict';
var beLatin = {
id: 'be-latin',
name: 'Belarusian Łacinka',
description: 'Belarusian Latin alphabet input method',
date: '2012-11-06',
URL: 'http://github.com/wikimedia/jquery.ime',
author: 'Pavel Selitskas',
license: 'GPLv3',
version: '1.0',
contextLength: 1,
maxKeyLength: 1,
patterns: [
[ '=S', 'Š' ],
[ '=U', 'Ŭ' ],
[ '-S', 'Ś' ],
[ '-L', 'Ł' ],
[ '-Z', 'Ź' ],
[ '=Z', 'Ž' ],
[ '-C', 'Ć' ],
[ '=C', 'Č' ],
[ '-N', 'Ń' ],
[ '=s', 'š' ],
[ '=u', 'ŭ' ],
[ '-s', 'ś' ],
[ '-l', 'ł' ],
[ '-z', 'ź' ],
[ '=z', 'ž' ],
[ '-c', 'ć' ],
[ '=c', 'č' ],
[ '-n', 'ń' ]
]
};
$.ime.register( beLatin );
}( jQuery ) );