parsley/app/helpers/ingredients_helper.rb

12 lines
170 B
Ruby
Raw Normal View History

2016-01-12 18:43:00 -06:00
module IngredientsHelper
2016-01-30 15:49:17 -06:00
def ndbn_button_class(ingredient)
if ingredient.ndbn.present?
'btn btn-success'
else
'btn btn-default'
end
end
2016-01-12 18:43:00 -06:00
end