Files
mediawiki-extensions-Univer…/lib/jquery.ime/rules/en/capitalize.js
Santhosh Thottingal 7d9b81fb9d Update jquery.ime from upstream
* Adds many input methods

Change-Id: I2f3576948416e7d2bf2f935e609fe50977e7e9d9
2013-02-17 09:44:26 +00:00

21 lines
429 B
JavaScript

( function ( $ ) {
'use strict';
var capitalize = {
id: 'en-capitalize',
name: 'English Capitalize',
description: 'Capitalize all the letters',
date: '2012-10-03',
URL: 'http://github.com/wikimedia/jquery.ime',
author: 'Santhosh Thottingal',
license: 'CC-BY-SA',
version: '1.0',
patterns: [ [ '[a-z]', function ( $1 ) {
return $1.toUpperCase();
} ] ]
};
$.ime.register( capitalize );
}( jQuery ) );