Update jquery.ime from upstream

Change-Id: Iac3c14f82c982396c4bcecfb3c5cc97df82c41cb
Version: 0.1.0+20130531
This commit is contained in:
Santhosh Thottingal
2013-05-31 16:43:04 +05:30
parent 44dbfbba4f
commit 000d04c14e
13 changed files with 75 additions and 294 deletions

View File

@@ -0,0 +1,41 @@
( function ( $ ) {
'use strict';
var udmAlt = {
id: 'udm-alt',
name: 'Удмурт ALT',
description: 'Удмурт ALT',
date: '2013-03-17',
URL: 'http://github.com/wikimedia/jquery.ime',
author: 'Amir (Алексей) Aharoni',
license: 'GPLv3',
version: '1.0',
patterns: [
['ц', 'ӵ'],
['Ц', 'Ӵ'],
['щ', 'ӥ'],
['Щ', 'Ӥ'],
['х', 'ӟ'],
['Х', 'Ӟ'],
['ф', 'ӝ'],
['Ф', 'Ӝ']
],
patterns_x: [
['ё', 'ӧ'],
['Ё', 'Ӧ'],
// Allow typing the Russian letters using Alt
['ц', 'ц'],
['Ц', 'Ц'],
['щ', 'щ'],
['Щ', 'Щ'],
['х', 'х'],
['Х', 'Х'],
['ф', 'ф'],
['Ф', 'Ф']
]
};
$.ime.register( udmAlt );
}( jQuery ) );