The file ext.uls.settingspanel.js is a draft for common code in the different settings panels. Change-Id: I057274f16b27b2c18d43d41c1d43f485a18ef0bf
21 lines
429 B
JavaScript
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 ) );
|