Fixed a trailing spaces issue from the addKey(string) whitespace update

This commit is contained in:
Dhruv Yadav 2018-08-30 21:58:54 +05:30
parent 75319233f2
commit 0fd6d9d7dc

View file

@ -345,7 +345,7 @@ var KeyboardPlugin = new Class({
for (var i = 0; i < keys.length; i++)
{
var currentKey = keys[i].trim();
if (currentKey)
if (currentKey)
{
output[currentKey] = this.addKey(currentKey);
}