lib/prez/helpers.rb in prez-0.0.4 vs lib/prez/helpers.rb in prez-0.0.5
- old
+ new
@@ -74,9 +74,16 @@
concat %{<div class="#{classes.join " "}"#{duration_attribute}>}
yield
concat %{</div>}
end
+ def element(options = {})
+ tag = options.fetch :tag, :div
+ concat %{<#{tag} class="prez-element">}
+ yield
+ concat %{</#{tag}>}
+ end
+
def notes
concat %{<div class="prez-notes">}
yield
concat %{</div>}
end