Sha256: a4b5ea5baa508d227d4fb7493597cbccbc7a511881562ad757833f0756f8c69d
Contents?: true
Size: 810 Bytes
Versions: 121
Compression:
Stored size: 810 Bytes
Contents
module RubyApp module Elements module Mobile module Dialogs require 'ruby_app/elements/mobile/dialog' require 'ruby_app/elements/mobile/navigation/hide_button' class ResponseDialog < RubyApp::Elements::Mobile::Dialog class CloseLink < RubyApp::Elements::Mobile::Navigation::HideButton template_path(:all, File.dirname(__FILE__)) def initialize super self.attributes.merge!('data-inline' => 'true') self.options.merge!(:transition => 'none') end end template_path(:all, File.dirname(__FILE__)) attr_reader :response def initialize super @response = nil end end end end end end
Version data entries
121 entries across 121 versions & 1 rubygems