The file ext.uls.settingspanel.js is a draft for common code in the different settings panels. Change-Id: I057274f16b27b2c18d43d41c1d43f485a18ef0bf
24 lines
573 B
JavaScript
24 lines
573 B
JavaScript
( 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 ) );
|