Class: Ems::Asset
- Inherits:
-
ActiveRecord::Base
- Object
- ActiveRecord::Base
- Ems::Asset
- Defined in:
- app/models/ems/asset.rb
Instance Method Summary collapse
-
#alt ⇒ Object
virtual alt text accessor - returns the title of the image otherwise the path.
Instance Method Details
#alt ⇒ Object
virtual alt text accessor - returns the title of the image otherwise the path
15 16 17 18 |
# File 'app/models/ems/asset.rb', line 15 def alt alt = self.title alt ||= self.image.url end |