Update jquery.ime from upstream

Upstream: https://github.com/wikimedia/jquery.ime
Changes:
 * Bug 53695: For languages with no input methods, set
   "use native keyboard" by default.
 * Add Venetian input method.
 * Drop -moz-linear-gradient
 * Apply /* @embed */ pragma to all images, not just the topmost in each
   block.
 * Validate the input method id in load method.

Change-Id: I05f8350003227e150948670caf919f05a2b00f88
This commit is contained in:
Kartik Mistry
2014-02-11 17:50:14 +05:30
committed by Amir E. Aharoni
parent 7de150c90a
commit db055c8f47
3 changed files with 50 additions and 7 deletions

View File

@@ -0,0 +1,32 @@
( function ( $ ) {
'use strict';
var vec = {
id: 'vec-GVU',
name: 'Venetian GVU',
description: 'Venetian input method.',
date: '2013-08-06',
URL: 'http://github.com/wikimedia/jquery.ime',
author: 'Vec.wiki community',
license: 'GPLv3',
version: '1.0',
patterns: [
['dh', 'đ'],
['lh', 'ƚ'],
['òò', 'ó'],
['zh', 'ẑ'],
['đh', 'dh'],
['ƚh', 'lh'],
['ẑh', 'zh'],
['Dh', 'Đ'],
['Lh', 'Ƚ'],
['Òò', 'Ó'],
['Zh', 'Ẑ'],
['Đh', 'Dh'],
['Ƚh', 'Lh'],
['Ẑh', 'Zh']
]
};
$.ime.register( vec );
}( jQuery ) );