Update jquery.ime and jquery.uls from upstream

Updating jquery.ime to
b8e2488a1f

Updating jquery.uls to
1b3e4265e6

Change-Id: Ie3083acd3f2e70fe7898231ed0328d88f88576cd
This commit is contained in:
Amir E. Aharoni
2021-10-11 10:52:27 +03:00
parent b3c18c5f8e
commit 23396f2016
5 changed files with 125 additions and 13 deletions

View File

@@ -0,0 +1,36 @@
( 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 ) );