Skip to content

Instantly share code, notes, and snippets.

View lomefin's full-sized avatar

Leonardo Luarte González lomefin

View GitHub Profile
@lomefin
lomefin / gist:a3bc286ecccfc874d28c
Last active August 29, 2015 14:16
Compactando código para hacerlo más elegante, eficiente y legible.
#Tengo una wea que me llega una serie de causas de error y quiero convertir esas causales a íconos
#Entonces, puedo hacer esto
element = $('<span class="fa-stack fa-lg"><i class="fa fa-car fa-stack-1x"></i><i class="fa fa-ban fa-stack-2x text-danger"></i></span>') if cause == "transportation_exclusion"
element = $('<span class="fa-stack fa-lg"><i class="fa fa-car fa-stack-1x"></i><i class="fa fa-ban fa-stack-2x text-danger"></i></span>') if cause == "role_definition"
#Pero es una mierda y es muy larga la línea y no me gusta Entonces... switch!
switch cause