claudiob/yt-annotations

View on GitHub
lib/yt/annotations/spotlight.rb

Summary

Maintainability
A
0 mins
Test Coverage
require 'yt/annotations/note'

module Yt
  module Annotations
    # A Spotlight annotation is like a Note annotation with text and start/end 
    # time, but the text is below the click area.
    class Spotlight < Note
    end
  end
end