Skip to content

Commit caadb91

Browse files
committed
JSCS: Remove space after function operator
1 parent 44fa439 commit caadb91

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+49
-49
lines changed

src/additional/cifES.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Código de identificación fiscal ( CIF ) is the tax identification code for Spanish legal entities
33
* Further rules can be found in Spanish on http://es.wikipedia.org/wiki/C%C3%B3digo_de_identificaci%C3%B3n_fiscal
44
*/
5-
jQuery.validator.addMethod( "cifES", function ( value, element ) {
5+
jQuery.validator.addMethod( "cifES", function( value, element ) {
66
"use strict";
77

88
var sum,

src/additional/nieES.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* The número de identidad de extranjero ( NIE )is a code used to identify the non-nationals in Spain
33
*/
4-
jQuery.validator.addMethod( "nieES", function ( value, element ) {
4+
jQuery.validator.addMethod( "nieES", function( value, element ) {
55
"use strict";
66

77
value = value.toUpperCase();

src/additional/nifES.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* The Número de Identificación Fiscal ( NIF ) is the way tax identification used in Spain for individuals
33
*/
4-
jQuery.validator.addMethod( "nifES", function ( value, element ) {
4+
jQuery.validator.addMethod( "nifES", function( value, element ) {
55
"use strict";
66

77
value = value.toUpperCase();

src/localization/messages_ar.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Translated default messages for the jQuery validation plugin.
33
* Locale: AR (Arabic; العربية)
44
*/
5-
(function ($) {
5+
(function($) {
66
$.extend($.validator.messages, {
77
required: "هذا الحقل إلزامي",
88
remote: "يرجى تصحيح هذا الحقل للمتابعة",

src/localization/messages_bg.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Translated default messages for the jQuery validation plugin.
33
* Locale: BG (Bulgarian; български език)
44
*/
5-
(function ($) {
5+
(function($) {
66
$.extend($.validator.messages, {
77
required: "Полето е задължително.",
88
remote: "Моля, въведете правилната стойност.",

src/localization/messages_ca.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Translated default messages for the jQuery validation plugin.
33
* Locale: CA (Catalan; català)
44
*/
5-
(function ($) {
5+
(function($) {
66
$.extend($.validator.messages, {
77
required: "Aquest camp és obligatori.",
88
remote: "Si us plau, omple aquest camp.",

src/localization/messages_cs.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Translated default messages for the jQuery validation plugin.
33
* Locale: CS (Czech; čeština, český jazyk)
44
*/
5-
(function ($) {
5+
(function($) {
66
$.extend($.validator.messages, {
77
required: "Tento údaj je povinný.",
88
remote: "Prosím, opravte tento údaj.",

src/localization/messages_da.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Translated default messages for the jQuery validation plugin.
33
* Locale: DA (Danish; dansk)
44
*/
5-
(function ($) {
5+
(function($) {
66
$.extend($.validator.messages, {
77
required: "Dette felt er påkrævet.",
88
maxlength: $.validator.format("Indtast højst {0} tegn."),

src/localization/messages_de.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Translated default messages for the jQuery validation plugin.
33
* Locale: DE (German, Deutsch)
44
*/
5-
(function ($) {
5+
(function($) {
66
$.extend($.validator.messages, {
77
required: "Dieses Feld ist ein Pflichtfeld.",
88
maxlength: $.validator.format("Geben Sie bitte maximal {0} Zeichen ein."),

src/localization/messages_el.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Translated default messages for the jQuery validation plugin.
33
* Locale: EL (Greek; ελληνικά)
44
*/
5-
(function ($) {
5+
(function($) {
66
$.extend($.validator.messages, {
77
required: "Αυτό το πεδίο είναι υποχρεωτικό.",
88
remote: "Παρακαλώ διορθώστε αυτό το πεδίο.",

0 commit comments

Comments
 (0)