Method: Wassup::Pane#alert_count
- Defined in:
- lib/wassup/pane.rb
#alert_count ⇒ Object
361 362 363 364 365 366 367 368 |
# File 'lib/wassup/pane.rb', line 361 def alert_count alert_count = 0 if self.contents alert_count = self.contents.map { |c| c.data.size }.inject(0, :+) end return alert_count end |