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,28 @@
( function ( $ ) {
'use strict';
var de = {
id: 'de',
name: 'Deutsch',
description: 'German input method',
date: '2012-11-20',
URL: 'http://github.com/wikimedia/jquery.ime',
author: 'Erik Moeller',
license: 'Public domain',
version: '1.0',
contextLength: 1,
maxKeyLength: 1,
patterns: [
[ '~A', 'Ä' ],
[ '~O', 'Ö' ],
[ '~U', 'Ü' ],
[ '~a', 'ä' ],
[ '~o', 'ö' ],
[ '~u', 'ü' ],
[ '~s', 'ß' ],
[ '~S', 'ß' ] ]
};
$.ime.register( de );
}( jQuery ) );