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
33 lines
584 B
JavaScript
33 lines
584 B
JavaScript
( 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 ) );
|