Update jquery.ime from upstream

* Add Obolo keyboard

Updating to
c794c46252

Change-Id: I3b11cdf10f6c2d122177879f9f27612cc319cb22
This commit is contained in:
Amir Aharoni
2020-11-04 14:22:43 +02:00
parent 50b3e3ccc9
commit 43deb543b7
2 changed files with 39 additions and 1 deletions

View File

@@ -0,0 +1,30 @@
( function ( $ ) {
'use strict';
var annTilde = {
id: 'ann-tilde',
name: 'ann-tilde',
description: 'Obolo input keyboard',
date: '2020-11-03',
URL: 'https://github.com/wikimedia/jquery.ime',
author: 'Amir E. Aharoni',
license: 'GPLv3',
version: '1.1',
patterns: [
[ '~N', 'N̄' ],
[ '~n', 'n̄' ],
[ '~O', 'Ọ' ],
[ '~o', 'ọ' ],
[ '~S', 'Ṣ' ],
[ '~s', 'ṣ' ],
[ '~\\\\', '\u0300' ], // Combining grave accent
[ '~/', '\u0301' ], // Combining acute accent
[ '~\\^', '\u0302' ], // Combining circumflex accent
[ '~-', '\u0304' ], // Combining macron
[ '~v', '\u030C' ], // Combining caron
[ '~\\.', '\u0323' ] // Combining dot below
]
};
$.ime.register( annTilde );
}( jQuery ) );