Sha256: 89fd12e5355892fab788393ec4af260c482a318c069478a023453ceadf3475ec
Contents?: true
Size: 567 Bytes
Versions: 33
Compression:
Stored size: 567 Bytes
Contents
module RubyApp module Elements module Mobile module Navigation require 'ruby_app/elements/mobile/navigation/navigation_button' class CloseButton < RubyApp::Elements::Mobile::Navigation::NavigationButton template_path(:all, File.dirname(__FILE__)) def initialize super self.options.merge!(:reverse => 'true') self.clicked do |element, event| RubyApp::Session.documents.last.hide(event) end end end end end end end
Version data entries
33 entries across 33 versions & 1 rubygems