Update jquery.ime from upstream

Version: 0.1.0+20130617

Bug: 49317
Change-Id: I566980aeafb9dce45ab4916751947c301778377c
This commit is contained in:
Santhosh Thottingal
2013-06-17 13:27:31 +05:30
parent 3bc6a71253
commit 2ca2f6d3fe
6 changed files with 314 additions and 5 deletions

View File

@@ -0,0 +1,34 @@
// This Chuvash keyboard is a stripped version of latin Mercen
// https://sites.google.com/site/mercen77/
// http://cvlat.blogspot.com
// only Chuvash diacritics are used, no additional letters for Turkish or dead keys implemented (for now?)
( function ( $ ) {
'use strict';
var cv = {
id: 'cv-lat-altgr',
name: 'Căvašla - Mercen',
description: 'CVLat usă kurakan Mercen',
date: '2013-03-21',
URL: 'https://sites.google.com/site/mercen77/',
author: 'Anatoly Mironov, @mirontoli',
license: 'MIT',
version: '1.0',
patterns_x: [
['a', 'ă'],
['A', 'Ă'],
['e', 'ĕ'],
['E', 'Ĕ'],
['s', 'ş'],
['S', 'Ş'],
['d|h', 'š'],
['D|H', 'Š'],
['w|u', 'ü'],
['W|U', 'Ü']
]
};
$.ime.register( cv );
}( jQuery ) );