Files
mediawiki-extensions-Univer…/lib/jquery.ime/rules/gur/gur-tilde.js
Amir E. Aharoni 23396f2016 Update jquery.ime and jquery.uls from upstream
Updating jquery.ime to
b8e2488a1f

Updating jquery.uls to
1b3e4265e6

Change-Id: Ie3083acd3f2e70fe7898231ed0328d88f88576cd
2021-10-11 12:03:12 +03:00

37 lines
854 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 gurTilde = {
id: 'gur-tilde',
name: 'gur-tilde',
description: 'Farefare input keyboard',
date: '2021-09-25',
URL: 'https://github.com/wikimedia/jquery.ime',
author: 'Amir E. Aharoni',
license: 'GPLv3',
version: '1.0',
patterns: [
[ '~E', 'Ɛ' ],
[ '~e', 'ɛ' ],
[ '~G', 'Ɣ' ],
[ '~g', 'ɣ' ],
[ '~I', 'Ɩ' ],
[ '~i', 'ɩ' ],
[ '~N', 'Ŋ' ],
[ '~n', 'ŋ' ],
[ '~O', 'Ɔ' ],
[ '~o', 'ɔ' ],
[ '~U', 'Ʋ' ],
[ '~u', 'ʋ' ],
[ '~\\\\', '\u0300' ], // Combining grave accent
[ '~/', '\u0301' ], // Combining acute accent
[ '~\\^', '\u0302' ], // Combining circumflex accent
[ '~\\{', '\u0303' ], // Combining tilde
[ '~-', '\u0304' ], // Combining macron
[ '~v', '\u030C' ] // Combining caron
]
};
$.ime.register( gurTilde );
}( jQuery ) );