Input method integration with ULS

The file ext.uls.settingspanel.js is a draft for common
code in the different settings panels.

Change-Id: I057274f16b27b2c18d43d41c1d43f485a18ef0bf
This commit is contained in:
Santhosh Thottingal
2012-10-18 16:27:25 +05:30
parent 90de05cb97
commit f13e474e43
67 changed files with 8867 additions and 22 deletions

View File

@@ -0,0 +1,23 @@
( function ( $ ) {
'use strict';
var hiInScript, maithiliPatterns, maithiliInScript;
hiInScript = $.ime.inputmethods['hi-inscript'];
maithiliPatterns = $.extend( hiInScript.patterns, [ [ 'z', '\u02BC' ] ] ); // apostrophe
maithiliInScript = {
id: 'mai-inscript',
name: 'Maithili InScript',
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 ) );