class Origami::Annotation::Text
Text annotation
Public Instance Methods
pre_build()
click to toggle source
Calls superclass method
# File lib/origami/annotations.rb, line 301 def pre_build model = self.StateModel state = self.State case model when "Marked" state = "Unmarked" if state.nil? when "Review" state = "None" if state.nil? end super end