Update jquery.ime from upstream

Changes:
* Bug 66064: Remove deprecated event.attrName and use
  event.originalEvent.attrName instead.
* Added Ludic (lud) transliteration layout.
* Added Tibetian (bo) EWTS layout.

Change-Id: Ia171faa1cbd71e31d45408d96f23f0826b914c5e
This commit is contained in:
Kartik Mistry
2014-07-23 07:45:24 +00:00
committed by KartikMistry
parent 3eb4ef48c4
commit 63f1b82f64
3 changed files with 364 additions and 2 deletions

View File

@@ -1,4 +1,4 @@
/*! jquery.ime - v0.1.0+20140528
/*! jquery.ime - v0.1.0+20140723
* https://github.com/wikimedia/jquery.ime
* Copyright (c) 2014 Santhosh Thottingal; Licensed GPL, MIT */
( function ( $ ) {
@@ -1460,7 +1460,7 @@
} );
} else if ( isDOMAttrModifiedSupported() ) {
return this.on( 'DOMAttrModified', function ( e ) {
callback.call( this, e.attrName );
callback.call( this, e.originalEvent.attrName );
} );
} else if ( 'onpropertychange' in document.body ) {
return this.on( 'propertychange', function () {
@@ -1638,6 +1638,10 @@
name: 'প্রভাত',
source: 'rules/bn/bn-probhat.js'
},
'bo-ewts': {
name: 'Tibetan EWTS',
source: 'rules/bo/bo-ewts.js'
},
'brx-inscript': {
name: 'इनस्क्रिप्ट',
source: 'rules/brx/brx-inscript.js'
@@ -1722,6 +1726,10 @@
name: 'translitterointi',
source: 'rules/fi/fi-transliteration.js'
},
'lud-transliteration': {
name: 'lud',
source: 'rules/lud/lud-transliteration.js'
},
'hi-transliteration': {
name: 'लिप्यंतरण',
source: 'rules/hi/hi-transliteration.js'
@@ -2187,6 +2195,10 @@
autonym: 'বাংলা',
inputmethods: [ 'bn-avro', 'bn-inscript', 'bn-nkb', 'bn-probhat', 'bn-inscript2' ]
},
'bo': {
autonym: 'བོད་ཡིག།',
inputmethods: [ 'bo-ewts' ]
},
'brx': {
autonym: 'बोड़ो',
inputmethods: [ 'brx-inscript', 'brx-inscript2' ]
@@ -2243,6 +2255,10 @@
autonym: 'Suomi',
inputmethods: [ 'fi-transliteration' ]
},
'lud': {
autonym: 'lüüdi',
inputmethods: [ 'lud-transliteration' ]
},
'gom': {
autonym: 'कोंकणी',
inputmethods: [ 'hi-transliteration', 'hi-inscript', 'gom-inscript2' ]