Sha256: e30dc5a28d26a3536067aa83001f38e30056600e9cb1bfa495d6eb51a32168da
Contents?: true
Size: 653 Bytes
Versions: 41
Compression:
Stored size: 653 Bytes
Contents
module Redcar class HtmlTab < Tab attr_reader :html_view def initialize(*args) super create_html_view end def self.web_content_icon WEB_ICON end def close html_view.controller.close if html_view.controller super end def create_html_view @html_view = HtmlView.new(self) end def controller_action(action, params) notify_listeners(:controller_action, action, params) end def go_to_location(url) controller.go_to_location(url) end end class ConfigTab < HtmlTab DEFAULT_ICON = CONFIG_ICON def icon DEFAULT_ICON end end end
Version data entries
41 entries across 41 versions & 2 rubygems