Sha256: d78c18c5e62e1e22fc256614c4afe24b8932da8d4a994ea226869b6119203357
Contents?: true
Size: 587 Bytes
Versions: 21
Compression:
Stored size: 587 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 super @page = nil self.clicked do |element, event| page = @page.new page.show(event, self.options) end end end end end end end
Version data entries
21 entries across 21 versions & 1 rubygems