Update jquery.ime from upstream

* Adds many input methods

Change-Id: I2f3576948416e7d2bf2f935e609fe50977e7e9d9
This commit is contained in:
Santhosh Thottingal
2013-02-17 15:09:49 +05:30
committed by Santhosh
parent 6ec65fec6c
commit 7d9b81fb9d
45 changed files with 4209 additions and 53 deletions

View File

@@ -0,0 +1,61 @@
( function ( $ ) {
'use strict';
var hrKbd = {
id: 'hr-kbd',
name: 'Croatian kbd',
description: 'Croatian keyboard layout',
date: '2013-02-11',
URL: 'http://github.com/wikimedia/jquery.ime',
author: 'Parag Nemade',
license: 'GPLv3',
version: '1.0',
patterns: [
['¸c', 'ç'],
['¸C', 'Ç'],
['¸s', 'ş'],
['¸S', 'Ş'],
['¨a', 'ä'],
['¨A', 'Ä'],
['¨e', 'ë'],
['¨E', 'Ë'],
['¨o', 'ö'],
['¨O', 'Ö'],
['¨u', 'ü'],
['¨U', 'Ü'],
['\\@', '\"'],
['\\^', '&'],
['\\&', '/'],
['*', '('],
['\\(', ')'],
['\\)', '='],
['\\-', '\''],
['\\_', '?'],
['\\=', '+'],
['\\+', '*'],
['\\`', '¸'],
['\\~', '¨'],
['y', 'z'],
['Y', 'Z'],
['\\[', 'š'],
['\\{', 'Š'],
['\\]', 'đ'],
['\\}', 'Đ'],
[';', 'č'],
[':', 'Č'],
['\'', 'ć'],
['\"', 'Ć'],
['\\\\', 'ž'],
['\\|', 'Ž'],
['z', 'y'],
['Z', 'Y'],
['\\<', ';'],
['\\>', ':'],
['/', '-'],
['\\?', '_']
]
};
$.ime.register( hrKbd );
}( jQuery ) );