Documentation, code clean ups and build updates Change-Id: I7ce3d75345b76f2a7693b6143e013b6a8202e093
25 lines
485 B
JavaScript
25 lines
485 B
JavaScript
( 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 ) );
|