Sha256: ff31998bd2adc1d441b67ef88cdf42f490a00f03071f959e81e8147388fced5a
Contents?: true
Size: 1006 Bytes
Versions: 134
Compression:
Stored size: 1006 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/sessions_list' require 'ruby_app/elements/mobile/page' require 'ruby_app/elements/mobile/pages/information/session_page' class SessionsPage < RubyApp::Elements::Mobile::Page template_path(:all, File.dirname(__FILE__)) def initialize super @back_button = RubyApp::Elements::Mobile::Navigation::BackButton.new @sessions_list = RubyApp::Elements::Mobile::Pages::Information::SessionsList.new @sessions_list.item_clicked do |element, event| RubyApp::Elements::Mobile::Pages::Information::SessionPage.new(event.item.session).show(event, element.options) end end end end end end end end
Version data entries
134 entries across 134 versions & 1 rubygems