Update jquery.ime from upstream

* Add Burkina Faso keyboard.
* Change CSS `none` values to `0`.

Updating to
002df3b65b

Change-Id: I1d918f1b3d54b1ab7d4c490283d53cd42c5070c9
This commit is contained in:
Amir E. Aharoni
2022-02-14 17:48:09 +02:00
parent fd0a16d01a
commit ee6b42c844
3 changed files with 60 additions and 4 deletions

View File

@@ -21,7 +21,7 @@
.imeselector:hover {
box-shadow: 0 1px 3px 0 #565656;
border-top: none;
border-top: 0;
background-color: rgba( 255, 255, 255, 0.85 );
}
@@ -29,7 +29,7 @@
.ime-disable {
cursor: pointer;
text-decoration: none;
outline: none;
outline: 0;
color: #222;
line-height: 1em;
padding-top: 4px;
@@ -192,7 +192,7 @@ span.ime-disable-shortcut {
padding-left: 20px;
padding-right: 20px;
font-weight: normal;
outline: none;
outline: 0;
white-space: nowrap;
position: relative;
}

View File

@@ -1,4 +1,4 @@
/*! jquery.ime - v0.2.0+20220208
/*! jquery.ime - v0.2.0+20220214
* https://github.com/wikimedia/jquery.ime
* Copyright (c) 2022 Santhosh Thottingal; License: (GPL-2.0-or-later OR MIT) */
( function ( $ ) {
@@ -2196,6 +2196,10 @@
name: 'अक्षरांतरण',
source: 'rules/mr/mr-transliteration.js'
},
'mul-bf': {
name: 'Burkina Faso tilde keyboard',
source: 'rules/mul-bf/mul-bf.js'
},
'mul-cm': {
name: 'General Alphabet of Cameroon Languages tilde keyboard',
source: 'rules/mul-cm/mul-cm.js'
@@ -2892,6 +2896,10 @@
autonym: 'ဘာသာ မန်',
inputmethods: [ 'mnw-simplified-anonta' ]
},
mos: {
autonym: 'moore',
inputmethods: [ 'mul-bf' ]
},
mr: {
autonym: 'मराठी',
inputmethods: [ 'mr-transliteration', 'mr-inscript2', 'mr-inscript', 'mr-phonetic' ]

View File

@@ -0,0 +1,48 @@
( function ( $ ) {
'use strict';
var mulBf = {
id: 'mul-bf',
name: 'mul-bf',
description: 'Burkina Faso tilde keyboard',
date: '2022-02-14',
URL: 'https://github.com/wikimedia/jquery.ime',
author: 'Amir E. Aharoni',
license: 'GPLv3',
version: '1.0',
maxKeyLength: 2,
patterns: [
[ '~B', 'Ɓ' ],
[ '~b', 'ɓ' ],
[ '~C', 'Ç' ],
[ '~c', 'ç' ],
[ '~D', 'Ɗ' ],
[ '~d', 'ɗ' ],
[ '~A', 'Ǝ' ],
[ '~a', 'ǝ' ],
[ '~E', 'Ɛ' ],
[ '~e', 'ɛ' ],
[ '~I', 'Ɩ' ],
[ '~i', 'ɩ' ],
[ '~N', 'Ŋ' ],
[ '~n', 'ŋ' ],
[ '~O', 'Ɔ' ],
[ '~o', 'ɔ' ],
[ '~U', 'Ʋ' ],
[ '~u', 'ʋ' ],
[ '~W', 'Ⱳ' ],
[ '~w', 'ⱳ' ],
[ '~Y', 'Ƴ' ],
[ '~y', 'ƴ' ],
[ '~\\\\', '\u0300' ], // Combining grave accent
[ '~/', '\u0301' ], // Combining acute accent
[ '~\\^', '\u0302' ], // Combining circumflex accent
[ '~\\{', '\u0303' ], // Combining tilde
[ '~-', '\u0304' ], // Combining macron
[ '~:', '\u0308' ], // Combining diaeresis
[ '~v', '\u030C' ] // Combining caron
]
};
$.ime.register( mulBf );
}( jQuery ) );