Files
mediawiki-extensions-Univer…/lib/jquery.ime/rules/chn/chn-tilde.js
Abijeet c1122f8e46 Update jQuery.ime and jQuery.uls from upstream
* jQuery.ime is updated to:
  4031b38c8c
* jQuery.uls is updated to:
  7709695755
* jQuery.webfonts is already upto date

Bug: T356848
Change-Id: I02bc51c0155a0602e5085dc56ba49b4a00b37a49
2024-04-23 11:45:17 +00:00

29 lines
553 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 chnTilde = {
id: 'chn-tilde',
name: 'chn-tilde',
description: 'Chinook Jargon input keyboard - tilde',
date: '2024-02-07',
URL: 'https://github.com/wikimedia/jquery.ime',
author: 'Amir E. Aharoni',
license: 'GPLv3',
version: '1.1',
patterns: [
[ '~E', 'Ə' ],
[ '~e', 'ə' ],
[ '~h', 'ʰ' ],
[ '~H', 'ʰ' ],
[ '~L', 'Ɬ' ],
[ '~l', 'ɬ' ],
[ '~X', 'X̣' ],
[ '~x', 'x̣' ],
[ '~\\\'', '' ],
[ '~\\?', 'ʔ' ]
]
};
$.ime.register( chnTilde );
}( jQuery ) );