Sha256: 373fc93dc308a6f894ed0039d66212aa3e16128943c71e7eac71ef241a522be5
Contents?: true
Size: 807 Bytes
Versions: 22
Compression:
Stored size: 807 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 => 'pop') 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
22 entries across 22 versions & 1 rubygems