Update jquery.ime from master
Add yo-alt layout. Change-Id: Ifa0064811d38e5e6d5be576a5a9d0ec5c0d43c9d
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
/*! jquery.ime - v0.1.0+20151012
|
||||
/*! jquery.ime - v0.1.0+20151121
|
||||
* https://github.com/wikimedia/jquery.ime
|
||||
* Copyright (c) 2015 Santhosh Thottingal; Licensed GPL, MIT */
|
||||
( function ( $ ) {
|
||||
@@ -2173,6 +2173,10 @@
|
||||
'vec-GVU': {
|
||||
name: 'Venetian',
|
||||
source: 'rules/vec/vec-GVU.js'
|
||||
},
|
||||
'yo-alt': {
|
||||
name: 'Yorùbá Alt',
|
||||
source: 'rules/yo/yo-alt.js'
|
||||
}
|
||||
} );
|
||||
|
||||
@@ -2536,6 +2540,10 @@
|
||||
'vec': {
|
||||
autonym: 'Venetian',
|
||||
inputmethods: [ 'vec-GVU' ]
|
||||
},
|
||||
'yo': {
|
||||
autonym: 'Yorùbá',
|
||||
inputmethods: [ 'yo-alt' ]
|
||||
}
|
||||
} );
|
||||
|
||||
|
||||
24
lib/jquery.ime/rules/yo/yo-alt.js
Normal file
24
lib/jquery.ime/rules/yo/yo-alt.js
Normal file
@@ -0,0 +1,24 @@
|
||||
( function ( $ ) {
|
||||
'use strict';
|
||||
|
||||
var yoAlt = {
|
||||
id: 'yo-alt',
|
||||
name: 'Yorùbá Alt',
|
||||
description: 'Yorùbá Alt',
|
||||
date: '2015-11-14',
|
||||
URL: 'http://github.com/wikimedia/jquery.ime',
|
||||
author: 'Amir E. Aharoni',
|
||||
license: 'GPLv3',
|
||||
version: '1.0',
|
||||
patterns_x: [
|
||||
// Combining dot below
|
||||
['\\.', '\u0323'],
|
||||
// Combining grave tone mark
|
||||
['\\\\', '\u0340'],
|
||||
// Combining acute tone mark
|
||||
["/", '\u0341']
|
||||
]
|
||||
};
|
||||
|
||||
$.ime.register( yoAlt );
|
||||
}( jQuery ) );
|
||||
Reference in New Issue
Block a user