Update jquery.ime from upstream

Add Afrikaans and N'Ko keyboards.

Updating to
d660b6ec5d

Change-Id: Ic2ee78eae9701e20e301011eb2a780cb32c7eacf
This commit is contained in:
Amir Aharoni
2019-05-21 13:41:01 +03:00
parent 0bf89d1934
commit ede9c683a9
4 changed files with 240 additions and 1 deletions

View File

@@ -0,0 +1,24 @@
( function ( $ ) {
'use strict';
var afTilde = {
id: 'af-tilde',
name: 'Afrikaans tilde',
description: 'Afrikaans tilde',
date: '2019-04-30',
URL: 'https://github.com/wikimedia/jquery.ime',
author: 'Amir E. Aharoni',
license: 'GPLv3',
version: '1.0',
maxKeyLength: 2,
patterns: [
[ "~\\'", '' ], // Initial apostrophe
[ '~\\\\', '\u0300' ], // Combining grave accent
[ '~/', '\u0301' ], // Combining acute accent
[ '~\\^', '\u0302' ], // Combining circumflex accent
[ '~:', '\u0308' ] // Combining diaeresis
]
};
$.ime.register( afTilde );
}( jQuery ) );