Sha256: 2acf85af4b64ef60454f67959c09718468cc32017c7aa7c2142b6f84f19968bb
Contents?: true
Size: 1.4 KB
Versions: 3
Compression:
Stored size: 1.4 KB
Contents
module RubyApp module Elements module Pages module TestPages require 'ruby_app/elements/dialogs/message_dialog' require 'ruby_app/elements/markdown' require 'ruby_app/elements/input' require 'ruby_app/elements/inputs/duration_input' require 'ruby_app/elements/pages/blank_page' require 'ruby_app/session' class InputTestPage < RubyApp::Elements::Pages::BlankPage template_path(:all, File.dirname(__FILE__)) def initialize super @input = RubyApp::Elements::Input.new @input.changed do |element, event| RubyApp::Session.show(event, RubyApp::Elements::Dialogs::MessageDialog.new(self.translate.message_dialog.message.title, self.translate.message_dialog.message.message(@input.value))) end @duration_input = RubyApp::Elements::Inputs::DurationInput.new @duration_input.changed do |element, event| RubyApp::Session.show(event, RubyApp::Elements::Dialogs::MessageDialog.new(self.translate.message_dialog.message.title, self.translate.message_dialog.message.message(@duration_input.duration))) end end end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems