Update jquery.ime from upstream

Changes:
* Bug 66064: Remove deprecated event.attrName and use
  event.originalEvent.attrName instead.
* Added Ludic (lud) transliteration layout.
* Added Tibetian (bo) EWTS layout.

Change-Id: Ia171faa1cbd71e31d45408d96f23f0826b914c5e
This commit is contained in:
Kartik Mistry
2014-07-23 07:45:24 +00:00
committed by KartikMistry
parent 3eb4ef48c4
commit 63f1b82f64
3 changed files with 364 additions and 2 deletions

View File

@@ -0,0 +1,29 @@
( function ( $ ) {
'use strict';
var mapping = {
id: 'lud-transliteration',
name: 'lud',
description: 'Ludic transliteration',
date: '2014-06-14',
URL: 'http://github.com/wikimedia/jquery.ime',
author: 'Niklas Laxström',
license: 'MIT',
version: '1.0',
contextLength: 0,
maxKeyLength: 2,
patterns: [
['ch', 'č'],
['C[hH]', 'Č'],
['sh', 'š'],
['S[hH]', 'Š'],
['zh', 'ž'],
['Z[hH]', 'Ž'],
['y', 'ü'],
['Y', 'Ü'],
['\'', '']
]
};
$.ime.register( mapping );
}( jQuery ) );