Sha256: 6c382a6546aeada055ce9892899d8f36ddb739c0e7b100423e509207e0485811

Contents?: true

Size: 336 Bytes

Versions: 2

Compression:

Stored size: 336 Bytes

Contents


module Redcar
  class HtmlTab < Tab
    attr_reader :html_view
  
    def initialize(*args)
      super
      create_html_view
    end
    
    def create_html_view
      @html_view = HtmlView.new(self)
    end
    
    def controller_action(action, params)
      notify_listeners(:controller_action, action, params)
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
redcar-0.3.7.1 plugins/html_view/lib/html_view/html_tab.rb
redcar-0.3.7 plugins/html_view/lib/html_view/html_tab.rb