class MIM::MotionBrowserConfig

Attributes

back_button_text[RW]
forward_button_text[RW]

Public Class Methods

new() click to toggle source
# File lib/config/motion_browser_config.rb, line 10
def initialize
  @back_button_text = 'Back'
  @forward_button_text = 'Forward'
end
shared() click to toggle source
# File lib/config/motion_browser_config.rb, line 3
def self.shared
  Dispatch.once { @shared = new }
  @shared
end