Made translate.js jshint compliant

This commit is contained in:
Lucas Lois
2016-10-02 16:48:27 -03:00
parent 5a99e22b64
commit b5276f7f83
+2 -2
View File
@@ -63,7 +63,7 @@
return target;
}
if (target in translation == false)
if (target in translation === false)
{
if (dynoTrans != null)
{
@@ -79,7 +79,7 @@
}
return result;
};
}
window._ = translate;