Files
mediawiki-extensions-Univer…/lib/jquery.ime/rules/ajg/ajg-tilde.js
Amir E. Aharoni 95b35715ff Update jquery.ime and jquery.uls from upstream
jquery.ime:
* Add Aja tilde and Mon Simplified Anonta
* Remove unnecessary Alt combinations from Burmese XKB.
Updating to
9bb9ec5b3a

jquery.uls
* Add Aja (ajg) and Logooli.
Updating to
09c410877d

Change-Id: Ib4ee4fa3cd123f0ca872c6afe1c3b1108bc23dbe
2021-11-15 13:59:57 +02:00

36 lines
823 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 ajgTilde = {
id: 'ajg-tilde',
name: 'ajg-tilde',
description: 'Aja tilde keyboard',
date: '2021-11-13',
URL: 'https://github.com/wikimedia/jquery.ime',
author: 'Mahuton POSSOUPE, Amir E. Aharoni',
license: 'GPLv3',
version: '1.0',
patterns: [
[ '~D', 'Ɖ' ],
[ '~d', 'ɖ' ],
[ '~E', 'Ɛ' ],
[ '~e', 'ɛ' ],
[ '~G', 'Ɣ' ],
[ '~g', 'ɣ' ],
[ '~N', 'Ŋ' ],
[ '~n', 'ŋ' ],
[ '~O', 'Ɔ' ],
[ '~o', 'ɔ' ],
[ '~Z', 'Ʒ' ],
[ '~z', 'ʒ' ],
[ '~\\\\', '\u0300' ], // Combining grave accent
[ '~/', '\u0301' ], // Combining acute accent
[ '~\\^', '\u0302' ], // Combining circumflex accent
[ '~-', '\u0304' ], // Combining macron
[ '~v', '\u030C' ] // Combining caron
]
};
$.ime.register( ajgTilde );
}( jQuery ) );