Files
mediawiki-extensions-Univer…/lib/jquery.ime/rules/yo/yo-alt.js
Santhosh Thottingal 28044a6f14 Update jquery.ime to 7572e2
Documentation, code clean ups and build updates

Change-Id: I7ce3d75345b76f2a7693b6143e013b6a8202e093
2016-04-12 11:52:46 +05:30

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