clarifying some code

This commit is contained in:
El RIDO 2016-07-11 16:09:38 +02:00
parent df5150c7f2
commit 615777ffd9

View File

@ -251,7 +251,7 @@ $(function() {
sprintf: function() sprintf: function()
{ {
var args = arguments; var args = arguments;
if (typeof arguments[0] == 'object') if (typeof arguments[0] === 'object')
{ {
args = arguments[0]; args = arguments[0];
} }
@ -334,12 +334,13 @@ $(function() {
*/ */
translate: function() translate: function()
{ {
var args = arguments, messageId, usesPlurals; var args = arguments, messageId;
if (typeof arguments[0] == 'object') if (typeof arguments[0] === 'object')
{ {
args = arguments[0]; args = arguments[0];
} }
if (usesPlurals = $.isArray(args[0])) var usesPlurals = $.isArray(args[0]);
if (usesPlurals)
{ {
// use the first plural form as messageId, otherwise the singular // use the first plural form as messageId, otherwise the singular
messageId = (args[0].length > 1 ? args[0][1] : args[0][0]); messageId = (args[0].length > 1 ? args[0][1] : args[0][0]);