mai-inscript.js 588 Bytes
Newer Older
priyank's avatar
priyank committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
( function ( $ ) {
	'use strict';

	var hiInScript, maithiliPatterns, maithiliInScript;
	hiInScript = $.ime.inputmethods['hi-inscript'];
	maithiliPatterns = $.extend( hiInScript.patterns, [ [ 'z', '\u02BC' ] ] ); // apostrophe

	maithiliInScript = {
		id: 'mai-inscript',
		name: 'इनस्क्रिप्ट',
		description: 'InScript keyboard for Maithili',
		date: '2011-02-26',
		license: 'GPLv3',
		version: '1.0',
		contextLength: 0,
		maxKeyLength: 1,
		patterns: maithiliPatterns,
		patterns_x: hiInScript.patterns_x
	};

	$.ime.register( maithiliInScript );
}( jQuery ) );