Sha256: 095b45f0a4d8bedc4f5e70416c81795f7bb5e81c5ea56c88c3949936420df464
Contents?: true
Size: 602 Bytes
Versions: 124
Compression:
Stored size: 602 Bytes
Contents
module RubyApp module Elements module Mobile module Navigation require 'ruby_app/elements/mobile/navigation/navigation_button' class PageButton < RubyApp::Elements::Mobile::Navigation::NavigationButton template_path(:all, File.dirname(__FILE__)) attr_accessor :page def initialize(page = nil) super() @page = page self.clicked do |element, event| page = @page.new page.show(event, self.options) end end end end end end end
Version data entries
124 entries across 124 versions & 1 rubygems