Update jquery.ime from master

Add yo-alt layout.

Change-Id: Ifa0064811d38e5e6d5be576a5a9d0ec5c0d43c9d
This commit is contained in:
Amir E. Aharoni
2015-11-21 21:19:54 +02:00
parent 0f258f447b
commit 62b2e000d1
2 changed files with 33 additions and 1 deletions

View File

@@ -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' ]
}
} );

View 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 ) );