Switch todo glyphs to FontAwesome

This commit is contained in:
James Mason 2014-08-15 18:03:05 -07:00
parent 206d121d3d
commit 9415128fcb

View file

@ -60,9 +60,9 @@ module ApplicationHelper
def icon_for_todo(bool)
if bool
return 'glyphicon glyphicon-ok'
return 'fa fa-check'
else
return 'glyphicon glyphicon-remove'
return 'fa fa-times'
end
end