Fix missing operator

This commit is contained in:
emanuele-f 2017-05-03 15:14:25 +02:00
parent b47b5e1300
commit be3d69a435

View file

@ -323,7 +323,7 @@ end
function op2jsop(op)
if op == "gt" then
return ">"
elseif op "lt" then
elseif op == "lt" then
return "<"
else
return "=="