Update jquery.ime from upstream

Change-Id: I1eabfcda79be85c8c28c11472ddc17b2e90c061d
This commit is contained in:
Amir E. Aharoni
2013-07-15 15:59:29 +03:00
parent 482a7488bf
commit 95c23085ff
11 changed files with 154 additions and 155 deletions

View File

@@ -0,0 +1,28 @@
( function ( $ ) {
'use strict';
var de = {
id: 'de-transliteration',
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 ) );