Files
mediawiki-extensions-Univer…/lib/jquery.ime/rules/jac/jac-tilde.js
Amir E. Aharoni c20d1f0c23 Update jquery.ime and jquery.uls from upstream
jquery.ime:
* Add tilde layouts for: Edo (bin), Ekpeye (ekp),
  Jakaltek (jac), and Wali (wlx).

Updating to
9a413337e5

jquery.uls:
* Update language-data. Add bin, ekp, hke,
  isv/isv-cyrl/isv-latn, jac, lue, toi, wlx
* Update autonym: ku-arab, tdd

Updating to:
0c657dceaf

Change-Id: I66e90fb414f032d0c6a5a8aa238e1663f8874381
2024-07-03 15:33:47 -04:00

24 lines
453 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 jacTilde = {
id: 'jac-tilde',
name: 'jac-tilde',
description: 'Jakaltek input keyboard',
date: '2024-07-03',
URL: 'https://github.com/wikimedia/jquery.ime',
author: 'Amir E. Aharoni',
license: 'GPLv3',
version: '1.0',
patterns: [
[ '~\'', '' ], // Saltillo
[ '~n', 'n̈' ],
[ '~N', 'N̈' ],
[ '~x', 'ẍ' ],
[ '~X', 'Ẍ' ]
]
};
$.ime.register( jacTilde );
}( jQuery ) );