Files
mediawiki-extensions-Univer…/lib/jquery.ime/rules/ee/ee-tilde.js
Amir Aharoni efae824f31 Update jquery.ime from upstream
* Add Ewe tilde input method.
* Fixes for the Fon tilde input method.

Updating to
3cd08addeb

Change-Id: Ic94221e7334cfa700158ff184710fde19b7d329c
2018-12-08 18:15:15 +02:00

37 lines
772 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

( function ( $ ) {
'use strict';
var eeTilde = {
id: 'ee-tilde',
name: 'ee-tilde',
description: 'Ewe input keyboard',
date: '2018-11-30',
URL: 'https://github.com/wikimedia/jquery.ime',
author: 'Amir E. Aharoni',
license: 'GPLv3',
version: '1.0',
patterns: [
[ '~D', 'Ɖ' ],
[ '~d', 'ɖ' ],
[ '~E', 'Ɛ' ],
[ '~e', 'ɛ' ],
[ '~F', 'Ƒ' ],
[ '~f', 'ƒ' ],
[ '~G', 'Ɣ' ],
[ '~g', 'ɣ' ],
[ '~N', 'Ŋ' ],
[ '~n', 'ŋ' ],
[ '~O', 'Ɔ' ],
[ '~o', 'ɔ' ],
[ '~V', 'Ʋ' ],
[ '~v', 'ʋ' ],
[ '~/', '\u0301' ], // Combining acute
[ '~\\\\', '\u0300' ], // Combining grave
[ '~\\{', '\u0303' ], // Combining tilde
[ '~\\^', '\u030C' ] // Combining caron
]
};
$.ime.register( eeTilde );
}( jQuery ) );