Sha256: e651367d49939a0ad56b7028240de54e87605f3e6a274a65d8a2eceea496f0b1

Contents?: true

Size: 833 Bytes

Versions: 3

Compression:

Stored size: 833 Bytes

Contents

module RubyApp

  module Elements

    module Mobile

      module Pages

        module Information
          require 'ruby_app/elements/mobile/navigation/back_button'
          require 'ruby_app/elements/mobile/pages/information/scripts_list'
          require 'ruby_app/elements/mobile/page'

          class ScriptsPage < RubyApp::Elements::Mobile::Page

            template_path(:all, File.dirname(__FILE__))

            def initialize
              super

              @back_button = RubyApp::Elements::Mobile::Navigation::BackButton.new

              @scripts_list = RubyApp::Elements::Mobile::Pages::Information::ScriptsList.new
              @scripts_list.clicked do |element, event|
                event.go(event.item.url)
              end

            end

          end

        end

      end

    end

  end

end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
RubyApp-0.5.9 lib/ruby_app/elements/mobile/pages/information/scripts_page.rb
RubyApp-0.5.0 lib/ruby_app/elements/mobile/pages/information/scripts_page.rb
RubyApp-0.2.8 lib/ruby_app/elements/mobile/pages/information/scripts_page.rb