Files
mediawiki-extensions-Univer…/lib/jquery.ime/rules/af/af-tilde.js
Amir Aharoni ede9c683a9 Update jquery.ime from upstream
Add Afrikaans and N'Ko keyboards.

Updating to
d660b6ec5d

Change-Id: Ic2ee78eae9701e20e301011eb2a780cb32c7eacf
2019-05-21 14:45:50 +03:00

25 lines
601 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 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 ) );